summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_screen.c
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-04-29 16:18:43 +0100
committerJakob Bornecrantz <jakob@vmware.com>2010-04-29 17:00:21 +0100
commitc4e89d130f99be0897829c1a1721c63bc07bdbfc (patch)
treed6e3a3b9d820b1109321c4e4c3d53cb114a6022f /src/gallium/drivers/softpipe/sp_screen.c
parentb7618c89b11a13de98f1e784338a4e02a8db0fd2 (diff)
softpipe & llvmpipe: Enable SM3 cap
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-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 11aa0c4583..8bb0294238 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -71,6 +71,8 @@ softpipe_get_param(struct pipe_screen *screen, int param)
return 1;
case PIPE_CAP_GLSL:
return 1;
+ case PIPE_CAP_SM3:
+ return 1;
case PIPE_CAP_ANISOTROPIC_FILTER:
return 0;
case PIPE_CAP_POINT_SPRITE: