summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/glamo/glamo_context.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/glamo/glamo_context.c')
-rw-r--r--src/mesa/drivers/dri/glamo/glamo_context.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/glamo/glamo_context.c b/src/mesa/drivers/dri/glamo/glamo_context.c
index 627f8f56a0..5c97f8b510 100644
--- a/src/mesa/drivers/dri/glamo/glamo_context.c
+++ b/src/mesa/drivers/dri/glamo/glamo_context.c
@@ -34,6 +34,7 @@
#include "glamo_context.h"
#include "glamo_screen.h"
+#include "glamo_state.h"
GLboolean glamoCreateContext(const __GLcontextModes *glVisual,
@@ -77,15 +78,17 @@ GLboolean glamoCreateContext(const __GLcontextModes *glVisual,
glamoScreen->driScreen->myNum, "glamo");
/* Initialize the software rasterizer and helper modules. */
- _swrast_CreateContext( ctx );
- _vbo_CreateContext( ctx );
- _tnl_CreateContext( ctx );
- _swsetup_CreateContext( ctx );
-
- _swrast_allow_pixel_fog( ctx, GL_TRUE );
- _swrast_allow_vertex_fog( ctx, GL_FALSE );
- _tnl_allow_pixel_fog( ctx, GL_TRUE );
- _tnl_allow_vertex_fog( ctx, GL_FALSE );
+ _swrast_CreateContext(ctx);
+ _vbo_CreateContext(ctx);
+ _tnl_CreateContext(ctx);
+ _swsetup_CreateContext(ctx);
+
+ _swrast_allow_pixel_fog(ctx, GL_TRUE);
+ _swrast_allow_vertex_fog(ctx, GL_FALSE);
+ _tnl_allow_pixel_fog(ctx, GL_TRUE);
+ _tnl_allow_vertex_fog(ctx, GL_FALSE);
+
+ glamoInitStateFuncs(ctx);
return GL_TRUE;
}