mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(Video drivers) Cleanups
This commit is contained in:
parent
8efa2b146e
commit
365c7f9c8b
@ -2561,9 +2561,10 @@ static void gl_get_overlay_interface(void *data,
|
||||
|
||||
static retro_proc_address_t gl_get_proc_address(void *data, const char *sym)
|
||||
{
|
||||
gfx_ctx_proc_address_t proc_address = {0};
|
||||
gfx_ctx_proc_address_t proc_address;
|
||||
|
||||
proc_address.sym = sym;
|
||||
proc_address.addr = NULL;
|
||||
proc_address.sym = sym;
|
||||
|
||||
video_context_driver_get_proc_address(&proc_address);
|
||||
|
||||
|
@ -234,7 +234,8 @@ static void *vg_init(const video_info_t *video,
|
||||
{
|
||||
gfx_ctx_proc_address_t proc_address;
|
||||
|
||||
proc_address.sym = "vgCreateEGLImageTargetKHR";
|
||||
proc_address.addr = NULL;
|
||||
proc_address.sym = "vgCreateEGLImageTargetKHR";
|
||||
|
||||
video_context_driver_get_proc_address(&proc_address);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user