diff options
author | Brian Paul <[email protected]> | 2005-12-10 17:53:07 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-12-10 17:53:07 +0000 |
commit | b04dd5c58763039a564c50b5e3c0bbc9755e7f72 (patch) | |
tree | a0774f43a6e62b969fd4097873cc467bc55f2032 /src/egl/main/eglscreen.h | |
parent | ad6f8eba00359fcb7abff8105dcb7a9dd2f32fec (diff) |
Added EGL_SCREEN_POSITION_GRANULARITY_MESA query.
Rename eglShowSurfaceMESA to eglShowScreenSurfaceMESA.
Diffstat (limited to 'src/egl/main/eglscreen.h')
-rw-r--r-- | src/egl/main/eglscreen.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/egl/main/eglscreen.h b/src/egl/main/eglscreen.h index 64198446aee..5d1cff9284a 100644 --- a/src/egl/main/eglscreen.h +++ b/src/egl/main/eglscreen.h @@ -22,10 +22,12 @@ struct _egl_screen _EGLMode *CurrentMode; _EGLSurface *CurrentSurface; - EGLint OriginX, OriginY; + + EGLint OriginX, OriginY; /**< Origin of scan-out region w.r.t. surface */ + EGLint StepX, StepY; /**< Screen position/origin granularity */ EGLint NumModes; - _EGLMode *Modes; /* array [NumModes] */ + _EGLMode *Modes; /**< array [NumModes] */ }; @@ -50,7 +52,7 @@ _eglCreateScreenSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, c extern EGLBoolean -_eglShowSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen, EGLSurface surface, EGLModeMESA mode); +_eglShowScreenSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen, EGLSurface surface, EGLModeMESA mode); extern EGLBoolean |