Module: Mesa Branch: main Commit: 0f98f750db30d2b650d319e6f21f44c7fcb19409 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0f98f750db30d2b650d319e6f21f44c7fcb19409
Author: Erik Faye-Lund <[email protected]> Date: Fri Jun 23 16:46:30 2023 +0200 aux/util: use enum for render-condition Reviewed-by: Yonggang Luo <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24002> --- src/gallium/auxiliary/util/u_blitter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_blitter.h b/src/gallium/auxiliary/util/u_blitter.h index 9ae88ae020a..664a3060df9 100644 --- a/src/gallium/auxiliary/util/u_blitter.h +++ b/src/gallium/auxiliary/util/u_blitter.h @@ -136,7 +136,7 @@ struct blitter_context struct pipe_stream_output_target *saved_so_targets[PIPE_MAX_SO_BUFFERS]; struct pipe_query *saved_render_cond_query; - uint saved_render_cond_mode; + enum pipe_render_cond_flag saved_render_cond_mode; bool saved_render_cond_cond; bool saved_window_rectangles_include;
