mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] egl: nit, fix case of function name
This commit is contained in:
parent
6990d7f7e3
commit
88b15cb3fe
@ -21,7 +21,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
|
|||||||
|
|
||||||
struct EGLDynProcs g_dynprocs = {0};
|
struct EGLDynProcs g_dynprocs = {0};
|
||||||
|
|
||||||
void egl_DynProcsInit(void)
|
void egl_dynProcsInit(void)
|
||||||
{
|
{
|
||||||
g_dynprocs.glEGLImageTargetTexture2DOES = (glEGLImageTargetTexture2DOES_t)
|
g_dynprocs.glEGLImageTargetTexture2DOES = (glEGLImageTargetTexture2DOES_t)
|
||||||
eglGetProcAddress("glEGLImageTargetTexture2DOES");
|
eglGetProcAddress("glEGLImageTargetTexture2DOES");
|
||||||
|
@ -29,4 +29,4 @@ struct EGLDynProcs
|
|||||||
|
|
||||||
extern struct EGLDynProcs g_dynprocs;
|
extern struct EGLDynProcs g_dynprocs;
|
||||||
|
|
||||||
void egl_DynProcsInit(void);
|
void egl_dynProcsInit(void);
|
||||||
|
@ -630,7 +630,7 @@ bool egl_render_startup(void * opaque, SDL_Window * window)
|
|||||||
const char *client_exts = eglQueryString(this->display, EGL_EXTENSIONS);
|
const char *client_exts = eglQueryString(this->display, EGL_EXTENSIONS);
|
||||||
const char *vendor = (const char *)glGetString(GL_VENDOR);
|
const char *vendor = (const char *)glGetString(GL_VENDOR);
|
||||||
|
|
||||||
egl_DynProcsInit();
|
egl_dynProcsInit();
|
||||||
|
|
||||||
DEBUG_INFO("EGL : %d.%d", maj, min);
|
DEBUG_INFO("EGL : %d.%d", maj, min);
|
||||||
DEBUG_INFO("Vendor : %s", vendor);
|
DEBUG_INFO("Vendor : %s", vendor);
|
||||||
|
Loading…
Reference in New Issue
Block a user