st/vega: Make it compatible with st_public.h.

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>
This commit is contained in:
Chia-I Wu 2010-01-11 12:03:07 +08:00
parent 940360a2e5
commit ea014ed461
2 changed files with 12 additions and 6 deletions

View 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;
}

View 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);