diff options
author | Dave Airlie <[email protected]> | 2013-11-27 19:47:51 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2014-04-02 12:12:04 +1000 |
commit | 76ba50a25a8bbc1e5fbcdb24da7e09f8996cf2c5 (patch) | |
tree | 05bd8c06d733e96246bacab1e8a429bf3800be51 /src/gallium/drivers/llvmpipe/lp_screen.c | |
parent | 882b46a42ee8f25853b972911e6e31988b979412 (diff) |
mesa/soft/llvmpipe: add fake MSAA support
This adds a gallium cap that allows us to fake GL3.0 by
not exposing MSAA on sw rendering.
It also forces the extra extensions needed for GL3.2.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_screen.c')
-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 fe06e34f675..766e433b968 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -239,6 +239,8 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_TEXTURE_GATHER_SM5: case PIPE_CAP_BUFFER_MAP_PERSISTENT_COHERENT: return 0; + case PIPE_CAP_FAKE_SW_MSAA: + return 1; } /* should only get here on unhandled cases */ debug_printf("Unexpected PIPE_CAP %d query\n", param); |