diff options
author | Chris Forbes <[email protected]> | 2012-11-30 21:19:08 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-03-02 11:34:58 +1300 |
commit | db5d5c30a603cb988dab8ed03cb99b68149826a8 (patch) | |
tree | 35e80502a58ba0f5b0781545ba5204cdc6a8e265 /src/mesa/main/context.c | |
parent | ffb53b4f0384fc811372644ce35471c0711eef9e (diff) |
mesa: add new max sample count state
- GL_MAX_COLOR_TEXTURE_SAMPLES
- GL_MAX_DEPTH_TEXTURE_SAMPLES
- GL_MAX_INTEGER_SAMPLES
V2: initialize limits to 1 in _mesa_init_constants as suggested by Brian
and Paul
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Paul Berry <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 02acfc2aa5b..cdcf7adfa25 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -661,6 +661,11 @@ _mesa_init_constants(struct gl_context *ctx) /* ES 3.0 or ARB_ES3_compatibility */ ctx->Const.MaxElementIndex = 0xffffffffu; + + /* GL_ARB_texture_multisample */ + ctx->Const.MaxColorTextureSamples = 1; + ctx->Const.MaxDepthTextureSamples = 1; + ctx->Const.MaxIntegerSamples = 1; } |