diff options
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 |