summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2013-11-21 15:25:55 +0100
committerMarek Olšák <[email protected]>2013-12-03 19:39:13 +0100
commit1a02bb71ddbf7312a84ac1693f562cca191a7d42 (patch)
tree0b35a6d1c9188cbed64d104eeb34936d5629845c /src/gallium/drivers/softpipe
parentd52791a708760dd114a53137caad211dc7cc4dfc (diff)
gallium: add support for AMD_vertex_shader_layer
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r--src/gallium/drivers/softpipe/sp_screen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 0ec0aad6714..0c8c94d0e19 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -186,6 +186,8 @@ softpipe_get_param(struct pipe_screen *screen, enum pipe_cap param)
return 1;
case PIPE_CAP_ENDIANNESS:
return PIPE_ENDIAN_NATIVE;
+ case PIPE_CAP_TGSI_VS_LAYER:
+ return 0;
}
/* should only get here on unhandled cases */
debug_printf("Unexpected PIPE_CAP %d query\n", param);