diff options
author | Chia-I Wu <[email protected]> | 2013-05-23 13:24:55 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-05-27 11:02:06 +0800 |
commit | 441aa9326a2c7b575f833ed18e97f3ce70844b25 (patch) | |
tree | 1a4de3de9c652fdeea031e9ab07454178a3fb013 /src/gallium/auxiliary/tgsi/tgsi_exec.c | |
parent | 63d09a0cb74f75e7e09773d560a22452c107647f (diff) |
tgsi: add buffer texture to tgsi_util_get_texture_coord_dim()
TGSI_TEXTURE_BUFFER is one-dimensional. Assert that exec_tex() is never
called with TGSI_TEXTURE_BUFFER.
Signed-off-by: Chia-I Wu <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index cb66a40f379..4482c6bd12a 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1791,6 +1791,7 @@ exec_tex(struct tgsi_exec_machine *mach, fetch_texel_offsets(mach, inst, offsets); assert(modifier != TEX_MODIFIER_LEVEL_ZERO); + assert(inst->Texture.Texture != TGSI_TEXTURE_BUFFER); dim = tgsi_util_get_texture_coord_dim(inst->Texture.Texture, &shadow_ref); |