st/egl_g3d: Get the stapi from the driver.

egl_g3d_get_st was called because the driver argument was not given
before.  It can be fixed now.
This commit is contained in:
Chia-I Wu 2010-01-12 17:55:53 +08:00
parent 3e6139d158
commit 28272bc472
1 changed files with 2 additions and 3 deletions

View File

@ -851,13 +851,12 @@ egl_g3d_wait_native(_EGLDriver *drv, _EGLDisplay *dpy, EGLint engine)
static _EGLProc
egl_g3d_get_proc_address(_EGLDriver *drv, const char *procname)
{
/* FIXME how come _EGLDriver is not passed? */
const struct egl_g3d_st *stapi;
struct egl_g3d_driver *gdrv = egl_g3d_driver(drv);
_EGLProc proc;
EGLint i;
for (i = 0; i < NUM_EGL_G3D_STS; i++) {
stapi = egl_g3d_get_st(i);
const struct egl_g3d_st *stapi = gdrv->stapis[i];
if (stapi) {
proc = (_EGLProc) stapi->st_get_proc_address(procname);
if (proc)