diff options
author | Tapani Pälli <[email protected]> | 2018-04-05 13:02:36 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-08-20 09:44:53 +0300 |
commit | 799b3d16d4bb0caa16dc35de66e11eca8517cd02 (patch) | |
tree | fa33ccc700a15c731694dcc3d589d7924d746dfc /src/egl/main/eglsurface.h | |
parent | 5a0684d665f4cfc996f9dfc5fddbe4a117ab639f (diff) |
egl: implement EXT_surface_SMPTE2086_metadata and EXT_surface_CTA861_3_metadata
Patch implements common bits for EXT_surface_SMPTE2086_metadata
and EXT_surface_CTA861_3_metadata extensions by adding new required
attributes and eglQuerySurface + eglSurfaceAttrib changes.
Currently none of the drivers are utilizing this data but this patch
is enabler in getting there.
v2: don't enable extension globally, should be only enabled by
EGL drivers that can transfer metadata to the window system (Jason)
use EGLint instead of uint16_t (Eric)
Signed-off-by: Ville Syrjälä <[email protected]>
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/egl/main/eglsurface.h')
-rw-r--r-- | src/egl/main/eglsurface.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/egl/main/eglsurface.h b/src/egl/main/eglsurface.h index 5d69bf487cf..51e6792289c 100644 --- a/src/egl/main/eglsurface.h +++ b/src/egl/main/eglsurface.h @@ -41,6 +41,24 @@ extern "C" { #endif +struct _egl_xy +{ + EGLint x; + EGLint y; +}; + +struct _egl_hdr_metadata +{ + struct _egl_xy display_primary_r; + struct _egl_xy display_primary_g; + struct _egl_xy display_primary_b; + struct _egl_xy white_point; + EGLint max_luminance; + EGLint min_luminance; + EGLint max_cll; + EGLint max_fall; +}; + /** * "Base" class for device driver surfaces. */ @@ -150,6 +168,8 @@ struct _egl_surface EGLBoolean BoundToTexture; EGLBoolean PostSubBufferSupportedNV; + + struct _egl_hdr_metadata HdrMetadata; }; |