diff options
author | Chia-I Wu <[email protected]> | 2013-05-27 12:31:01 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-05-27 12:31:42 +0800 |
commit | 5285c4c88e4beab653660e8a5b51ce9a779fc0d2 (patch) | |
tree | 08bb381cf0b7d258cf68b9371ba7d2d5d41c9055 /src/gallium | |
parent | 3a5dd39b1d8247791f7ba7eedb78654d1ecabe82 (diff) |
ilo: enable multiple constant buffers
This effectively enables uniform buffer object support.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.h b/src/gallium/drivers/ilo/ilo_context.h index 3e12bf1d492..8d3d14154f3 100644 --- a/src/gallium/drivers/ilo/ilo_context.h +++ b/src/gallium/drivers/ilo/ilo_context.h @@ -36,7 +36,7 @@ * \see brw_context.h */ #define ILO_MAX_DRAW_BUFFERS 8 -#define ILO_MAX_CONST_BUFFERS 1 +#define ILO_MAX_CONST_BUFFERS (1 + 12) #define ILO_MAX_SAMPLER_VIEWS 16 #define ILO_MAX_SAMPLERS 16 #define ILO_MAX_SO_BINDINGS 64 |