Go to the source code of this file.
Functions | |
void | init_gallium (void) |
static struct pipe_screen * | st_hardpipe_screen_create (void) |
static struct pipe_context * | st_hardpipe_context_create (struct pipe_screen *screen) |
Variables | |
void(* | force_init_gallium_linkage )(void) = &init_gallium |
struct st_winsys | st_hardpipe_winsys |
Definition in file st_hardpipe_winsys.c.
void init_gallium | ( | void | ) |
static struct pipe_context* st_hardpipe_context_create | ( | struct pipe_screen * | screen | ) | [static, read] |
Definition at line 53 of file st_hardpipe_winsys.c.
References st_winsys::context_create, and st_softpipe_winsys.
00054 { 00055 return st_softpipe_winsys.context_create(screen); 00056 }
static struct pipe_screen* st_hardpipe_screen_create | ( | void | ) | [static, read] |
Definition at line 46 of file st_hardpipe_winsys.c.
References st_winsys::screen_create, and st_softpipe_winsys.
00047 { 00048 return st_softpipe_winsys.screen_create(); 00049 }
void(* force_init_gallium_linkage)(void) = &init_gallium |
struct st_winsys st_hardpipe_winsys |
Initial value:
Definition at line 59 of file st_hardpipe_winsys.c.