egl: Add EGL_RECORDABLE_ANDROID attribute
This is used by Android to select an eglconfig compatible with screen recording. Cc: mesa-stable@lists.freedesktop.org Signed-off-by: Rob Herring <robh@kernel.org> [Emil Velikov: add the _eglIsConfigAttribValid check] Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:

committed by
Emil Velikov

parent
8975527f58
commit
e21e81aa18
@@ -383,6 +383,7 @@ _eglCreateExtensionsString(_EGLDisplay *dpy)
|
||||
/* Please keep these sorted alphabetically. */
|
||||
_EGL_CHECK_EXTENSION(ANDROID_framebuffer_target);
|
||||
_EGL_CHECK_EXTENSION(ANDROID_image_native_buffer);
|
||||
_EGL_CHECK_EXTENSION(ANDROID_recordable);
|
||||
|
||||
_EGL_CHECK_EXTENSION(CHROMIUM_sync_control);
|
||||
|
||||
|
@@ -249,6 +249,9 @@ static const struct {
|
||||
{ EGL_FRAMEBUFFER_TARGET_ANDROID, ATTRIB_TYPE_BOOLEAN,
|
||||
ATTRIB_CRITERION_EXACT,
|
||||
EGL_DONT_CARE },
|
||||
{ EGL_RECORDABLE_ANDROID, ATTRIB_TYPE_BOOLEAN,
|
||||
ATTRIB_CRITERION_EXACT,
|
||||
EGL_DONT_CARE },
|
||||
};
|
||||
|
||||
|
||||
@@ -493,6 +496,8 @@ _eglIsConfigAttribValid(_EGLConfig *conf, EGLint attr)
|
||||
return conf->Display->Extensions.NOK_texture_from_pixmap;
|
||||
case EGL_FRAMEBUFFER_TARGET_ANDROID:
|
||||
return conf->Display->Extensions.ANDROID_framebuffer_target;
|
||||
case EGL_RECORDABLE_ANDROID:
|
||||
return conf->Display->Extensions.ANDROID_recordable;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@@ -87,6 +87,7 @@ struct _egl_config
|
||||
/* extensions */
|
||||
EGLint YInvertedNOK;
|
||||
EGLint FramebufferTargetAndroid;
|
||||
EGLint RecordableAndroid;
|
||||
};
|
||||
|
||||
|
||||
@@ -135,6 +136,7 @@ _eglOffsetOfConfig(EGLint attr)
|
||||
/* extensions */
|
||||
ATTRIB_MAP(EGL_Y_INVERTED_NOK, YInvertedNOK);
|
||||
ATTRIB_MAP(EGL_FRAMEBUFFER_TARGET_ANDROID, FramebufferTargetAndroid);
|
||||
ATTRIB_MAP(EGL_RECORDABLE_ANDROID, RecordableAndroid);
|
||||
#undef ATTRIB_MAP
|
||||
default:
|
||||
return -1;
|
||||
|
@@ -92,6 +92,7 @@ struct _egl_extensions
|
||||
/* Please keep these sorted alphabetically. */
|
||||
EGLBoolean ANDROID_framebuffer_target;
|
||||
EGLBoolean ANDROID_image_native_buffer;
|
||||
EGLBoolean ANDROID_recordable;
|
||||
|
||||
EGLBoolean CHROMIUM_sync_control;
|
||||
|
||||
|
Reference in New Issue
Block a user