diff options
author | Jakob Bornecrantz <[email protected]> | 2010-04-29 16:18:43 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-04-29 17:00:21 +0100 |
commit | c4e89d130f99be0897829c1a1721c63bc07bdbfc (patch) | |
tree | d6e3a3b9d820b1109321c4e4c3d53cb114a6022f /src/gallium/drivers/llvmpipe | |
parent | b7618c89b11a13de98f1e784338a4e02a8db0fd2 (diff) |
softpipe & llvmpipe: Enable SM3 cap
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 00a897c86f8..111eedc4f23 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -97,6 +97,8 @@ llvmpipe_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: |