diff options
author | Ilia Mirkin <[email protected]> | 2016-05-21 19:09:32 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-05-26 08:46:13 -0400 |
commit | b634936d3b05712ece5ddda4da3c161e293e6678 (patch) | |
tree | 1647966f8f43df03c0ea6907338cbd4c48481516 /src/gallium/drivers/nouveau/nvc0/nvc0_context.h | |
parent | 2ed9563e79670ba2430f0827050e9a851fc56e79 (diff) |
nvc0: enable 32 textures on kepler+
For fermi, this likely will require use of linked tsc mode. However on
bindless architectures, we can have as many as we want. As it stands,
the AUX_TEX_INFO has 32 teture handles reserved.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0/nvc0_context.h')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_context.h b/src/gallium/drivers/nouveau/nvc0/nvc0_context.h index 436e91252b5..5be78aabebc 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_context.h +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_context.h @@ -197,7 +197,7 @@ struct nvc0_context { uint32_t textures_coherent[6]; struct nv50_tsc_entry *samplers[6][PIPE_MAX_SAMPLERS]; unsigned num_samplers[6]; - uint16_t samplers_dirty[6]; + uint32_t samplers_dirty[6]; bool seamless_cube_map; uint32_t tex_handles[6][PIPE_MAX_SAMPLERS]; /* for nve4 */ |