mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-30 07:28:20 +02:00
gallium/u_blitter: change width/height parameters to 32-bit integer
Reviewed-by: Qiang Yu <yuq825@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38587>
This commit is contained in:
parent
7621b2d56d
commit
4529693e72
2 changed files with 2 additions and 2 deletions
|
|
@ -2685,7 +2685,7 @@ static void *get_custom_vs(struct blitter_context *blitter)
|
|||
*/
|
||||
void util_blitter_custom_shader(struct blitter_context *blitter,
|
||||
struct pipe_surface *dstsurf,
|
||||
uint16_t width, uint16_t height,
|
||||
unsigned width, unsigned height,
|
||||
void *custom_vs, void *custom_fs)
|
||||
{
|
||||
struct blitter_context_priv *ctx = (struct blitter_context_priv*)blitter;
|
||||
|
|
|
|||
|
|
@ -402,7 +402,7 @@ void util_blitter_custom_resolve_color(struct blitter_context *blitter,
|
|||
/* Used by vc4 for 8/16-bit linear-to-tiled blits */
|
||||
void util_blitter_custom_shader(struct blitter_context *blitter,
|
||||
struct pipe_surface *dstsurf,
|
||||
uint16_t width, uint16_t height,
|
||||
unsigned width, unsigned height,
|
||||
void *custom_vs, void *custom_fs);
|
||||
|
||||
/* Used by D3D12 for non-MSAA -> MSAA stencil blits */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue