summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-05-24 23:30:23 +0200
committerThomas White <taw@bitwiz.org.uk>2010-05-24 23:30:23 +0200
commitbc73b3eb944ebe923be6be0ddd1d259fd0a40c50 (patch)
tree21d9ddde26a271c37c9048a1aa83d234d4c24852
parent1ac166895fef47806c9e9286d2a6356b4db8398d (diff)
New framebuffer initialisation function
-rw-r--r--src/mesa/drivers/dri/glamo/glamo_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/glamo/glamo_screen.c b/src/mesa/drivers/dri/glamo/glamo_screen.c
index 39148f3eb1..8244ec3361 100644
--- a/src/mesa/drivers/dri/glamo/glamo_screen.c
+++ b/src/mesa/drivers/dri/glamo/glamo_screen.c
@@ -166,7 +166,7 @@ static GLboolean glamoCreateBuffer(__DRIscreen *driScrnPriv,
gfb = CALLOC_STRUCT(glamo_framebuffer);
if ( !gfb ) return GL_FALSE;
- _mesa_initialize_framebuffer(&gfb->base, mesaVis);
+ _mesa_initialize_window_framebuffer(&gfb->base, mesaVis);
/* we only support this one format at the moment */
rgbFormat = GL_RGB5;