From: Brian Paul Date: Tue, 13 Jan 2009 17:40:19 +0000 (-0700) Subject: i965: allow larger AA points on fallback path X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=49b53407c7c4f08b5e13591fd04080ca602fba40;p=mesa.git i965: allow larger AA points on fallback path --- 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 );