i810/i915/i915tex: reinitialize the context point state

This commit is contained in:
Xiang, Haihao
2007-04-04 16:50:47 +08:00
parent dba21ed913
commit 40ae3943f2
3 changed files with 15 additions and 0 deletions
+5
View File
@@ -278,6 +278,11 @@ i810CreateContext( const __GLcontextModes *mesaVis,
ctx->Const.MaxPointSizeAA = 3.0;
ctx->Const.PointSizeGranularity = 1.0;
/* reinitialize the context point state.
* It depend on constants in __GLcontextRec::Const
*/
_mesa_init_point(ctx);
ctx->Driver.GetBufferSize = i810BufferSize;
ctx->Driver.GetString = i810GetString;
@@ -302,6 +302,11 @@ GLboolean intelInitContext( intelContextPtr intel,
ctx->Const.MaxPointSizeAA = 3.0;
ctx->Const.PointSizeGranularity = 1.0;
/* reinitialize the context point state.
* It depend on constants in __GLcontextRec::Const
*/
_mesa_init_point(ctx);
/* Initialize the software rasterizer and helper modules. */
_swrast_CreateContext( ctx );
_vbo_CreateContext( ctx );
@@ -390,6 +390,11 @@ intelInitContext(struct intel_context *intel,
ctx->Const.MaxPointSizeAA = 3.0;
ctx->Const.PointSizeGranularity = 1.0;
/* reinitialize the context point state.
* It depend on constants in __GLcontextRec::Const
*/
_mesa_init_point(ctx);
ctx->Const.MaxColorAttachments = 4; /* XXX FBO: review this */
/* Initialize the software rasterizer and helper modules. */