From 8c347d4e5762b41320a80acf474284b5c096fd0d Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Thu, 2 May 2013 16:25:15 +0800 Subject: gallium: fix type of flags in pipe_context::flush() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It should be unsigned, not enum pipe_flush_flags. Fixed a build error: src/gallium/state_trackers/egl/android/native_android.cpp:426:29: error: invalid conversion from 'int' to 'pipe_flush_flags' [-fpermissive] v2: replace all occurrences of enum pipe_flush_flags by unsigned Signed-off-by: Chia-I Wu Reviewed-by: Marek Olšák [olv: document the parameter now that the type is unsigned] --- src/gallium/drivers/freedreno/freedreno_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gallium/drivers/freedreno/freedreno_context.c') diff --git a/src/gallium/drivers/freedreno/freedreno_context.c b/src/gallium/drivers/freedreno/freedreno_context.c index 4753f58d12d..64c21fedaa9 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.c +++ b/src/gallium/drivers/freedreno/freedreno_context.c @@ -96,7 +96,7 @@ fd_context_render(struct pipe_context *pctx) static void fd_context_flush(struct pipe_context *pctx, struct pipe_fence_handle **fence, - enum pipe_flush_flags flags) + unsigned flags) { DBG("fence=%p", fence); -- cgit v1.2.3