st/vega: Make it compatible with st_public.h.
authorChia-I Wu <olvaffe@gmail.com>
Mon, 11 Jan 2010 04:03:07 +0000 (12:03 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Tue, 12 Jan 2010 02:55:35 +0000 (10:55 +0800)
It missed a stub for st_get_proc_address, and st_make_current should
return a boolean.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
src/gallium/state_trackers/vega/vg_tracker.c
src/gallium/state_trackers/vega/vg_tracker.h

index d63abe6a421575d1c1bd8f53301dc39c241828d8..ff80aab03a389d77d203ae5fa10e570761558052 100644 (file)
@@ -371,14 +371,15 @@ void st_unreference_framebuffer(struct st_framebuffer *stfb)
    /* FIXME */
 }
 
-void st_make_current(struct vg_context *st,
-                     struct st_framebuffer *draw,
-                     struct st_framebuffer *read)
+boolean st_make_current(struct vg_context *st,
+                        struct st_framebuffer *draw,
+                        struct st_framebuffer *read)
 {
    vg_set_current_context(st);
    if (st) {
       st->draw_buffer = draw;
    }
+   return VG_TRUE;
 }
 
 struct vg_context *st_get_current(void)
@@ -428,3 +429,8 @@ int st_unbind_texture_surface(struct pipe_surface *ps, int target, int level)
 {
    return 0;
 }
+
+st_proc st_get_proc_address(const char *procname)
+{
+   return NULL;
+}
index 0f0c27f4550a6a2975adb172528fc5736820acf3..c1196954a76c08516ca41051cebb568e2b4b726f 100644 (file)
@@ -99,9 +99,9 @@ PUBLIC
 void st_unreference_framebuffer(struct st_framebuffer *stfb);
 
 PUBLIC
-void st_make_current(struct vg_context *st,
-                     struct st_framebuffer *draw,
-                     struct st_framebuffer *read);
+boolean st_make_current(struct vg_context *st,
+                        struct st_framebuffer *draw,
+                        struct st_framebuffer *read);
 
 PUBLIC
 struct vg_context *st_get_current(void);