Add D3D hooks
This commit is contained in:
parent
9fa647097a
commit
3b0e324a84
|
@ -60,6 +60,11 @@ typedef struct menu_display
|
||||||
|
|
||||||
|
|
||||||
static menu_display_ctx_driver_t *menu_display_ctx_drivers[] = {
|
static menu_display_ctx_driver_t *menu_display_ctx_drivers[] = {
|
||||||
|
#if 0
|
||||||
|
#ifdef HAVE_DIRECT3D
|
||||||
|
&menu_display_ctx_d3d,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#ifdef HAVE_OPENGL
|
#ifdef HAVE_OPENGL
|
||||||
&menu_display_ctx_gl,
|
&menu_display_ctx_gl,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -178,6 +178,7 @@ void menu_display_texture_unload(uintptr_t *id);
|
||||||
const float *menu_display_get_tex_coords(void);
|
const float *menu_display_get_tex_coords(void);
|
||||||
|
|
||||||
extern menu_display_ctx_driver_t menu_display_ctx_gl;
|
extern menu_display_ctx_driver_t menu_display_ctx_gl;
|
||||||
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d;
|
||||||
extern menu_display_ctx_driver_t menu_display_ctx_null;
|
extern menu_display_ctx_driver_t menu_display_ctx_null;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue