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:
Marek Olšák 2025-12-03 14:27:02 -05:00 committed by Marge Bot
parent 7621b2d56d
commit 4529693e72
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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 */