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/include | |
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/include')
-rw-r--r-- | src/gallium/include/pipe/p_defines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index a220de04048..8c092c2e619 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -551,7 +551,8 @@ enum pipe_cap { PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS = 89, PIPE_CAP_MAX_TEXTURE_GATHER_COMPONENTS = 90, PIPE_CAP_TEXTURE_GATHER_SM5 = 91, - PIPE_CAP_BUFFER_MAP_PERSISTENT_COHERENT = 92 + PIPE_CAP_BUFFER_MAP_PERSISTENT_COHERENT = 92, + PIPE_CAP_FAKE_SW_MSAA = 93 }; #define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 (1 << 0) |