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:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user