summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2014-08-20 19:45:10 -0400
committerIlia Mirkin <imirkin@alum.mit.edu>2014-09-12 00:54:55 -0400
commitc113095acdcfedb4ad82da67bc7981056efe9e44 (patch)
tree9fca2a38a412dac43b9de31949f11157faca1aaa /src/gallium/drivers/llvmpipe
parent3c81de58512f0615df1d90aa79a22c9a44c7189e (diff)
downloadexternal_mesa3d-c113095acdcfedb4ad82da67bc7981056efe9e44.zip
external_mesa3d-c113095acdcfedb4ad82da67bc7981056efe9e44.tar.gz
external_mesa3d-c113095acdcfedb4ad82da67bc7981056efe9e44.tar.bz2
gallium: add a texture target to sampler view and a CAP to use it
This allows a sampler view to have a different texture target than the underlying resource. This will be used to implement the type casting between 2d arrays and cube maps as specified in ARB_texture_view. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c
index 2da5208..e6597e9 100644
--- a/src/gallium/drivers/llvmpipe/lp_screen.c
+++ b/src/gallium/drivers/llvmpipe/lp_screen.c
@@ -253,6 +253,7 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param)
case PIPE_CAP_TEXTURE_GATHER_OFFSETS:
case PIPE_CAP_TGSI_VS_WINDOW_SPACE_POSITION:
case PIPE_CAP_TGSI_FS_FINE_DERIVATIVE:
+ case PIPE_CAP_SAMPLER_VIEW_TARGET:
return 0;
case PIPE_CAP_FAKE_SW_MSAA:
return 1;