diff options
author | Brian Paul <[email protected]> | 2009-01-13 10:40:19 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-01-14 08:34:06 -0700 |
commit | 49b53407c7c4f08b5e13591fd04080ca602fba40 (patch) | |
tree | 81924cb8534dfc5d5aa9f724e7b4f2cc9015714b /src | |
parent | d911e3e24fbfb5cd28cabb92f952775b7eb1d1d9 (diff) |
i965: allow larger AA points on fallback path
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index a415e378fff..d7a2bd95ee2 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -143,6 +143,9 @@ GLboolean brwCreateContext( const __GLcontextModes *mesaVis, ctx->Const.MaxCubeTextureLevels = 12; ctx->Const.MaxTextureRectSize = (1<<11); + /* if conformance mode is set, swrast can handle any size AA point */ + ctx->Const.MaxPointSizeAA = 255.0; + /* ctx->Const.MaxNativeVertexProgramTemps = 32; */ brw_init_attribs( brw ); |