Module: Mesa Branch: master Commit: 32f69ad86ca484d2e02ed89e55c3b57ce298d5a9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=32f69ad86ca484d2e02ed89e55c3b57ce298d5a9
Author: Francisco Jerez <[email protected]> Date: Fri Nov 22 16:09:42 2013 -0800 i965: Bump number of supported atomic counter buffers. Now that we have dynamic binding tables there's no good reason anymore to expose so few atomic counter buffers. Increase it to 16. Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_context.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 63f0687..97f8906 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -660,7 +660,7 @@ struct brw_gs_prog_data #define BRW_MAX_DRAW_BUFFERS 8 /** Max number of atomic counter buffer objects in a shader */ -#define BRW_MAX_ABO 4 +#define BRW_MAX_ABO 16 /** * Max number of binding table entries used for stream output. _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
