rpi: use "brcm" variant of libGLESv2

This commit is contained in:
Jan Palus 2020-04-19 14:21:53 +02:00 committed by wm4
parent 3023837fb9
commit da314d3db2
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ static void *get_proc_address(const GLubyte *name)
// EGL 1.4 (supported by the RPI firmware) does not necessarily return
// function pointers for core functions.
if (!p) {
void *h = dlopen("/opt/vc/lib/libGLESv2.so", RTLD_LAZY);
void *h = dlopen("/opt/vc/lib/libbrcmGLESv2.so", RTLD_LAZY);
if (h) {
p = dlsym(h, name);
dlclose(h);