diff options
author | Adam Jackson <[email protected]> | 2017-05-02 12:27:01 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2017-05-04 12:52:18 -0400 |
commit | ddb99127a6f6c6d0284f3395e0b06aed575f0ecd (patch) | |
tree | 575cdd13039615992811e91f7fc110a69dcdf21f /src/egl/main/egldisplay.h | |
parent | 939b015736d5091faeabde4f5a373e6a1612c5ed (diff) |
egl/x11: Honor the EGL_PLATFORM_X11_SCREEN_EXT attribute
Introduce _egl_display::Options::Platforms for private storage.
For X11 platforms we can use it for the screen number as set by
EGL_PLATFORM_X11_SCREEN_EXT.
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 6c1049d23c3..4d3d96e1749 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -151,6 +151,7 @@ struct _egl_display struct { EGLBoolean TestOnly; /**< Driver should not set fields when true */ EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */ + void *Platform; /**< Platform-specific options */ } Options; /* these fields are set by the driver during init */ |