EGL: Add eglSetDamageRegionKHR to GLVND dispatch list

This was missed in the original conversion, which added support for
eglSetDamageRegionKHR to local EGL exports, but forgot to generate
updated dispatch for GLVND.

Signed-off-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Fixes: 9827547313 ("egl/android: support for EGL_KHR_partial_update")
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4403>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4403>
(cherry picked from commit bfb9c08e5c)
This commit is contained in:
Daniel Stone 2020-04-01 12:43:51 +01:00 committed by Dylan Baker
parent 7f8b89e030
commit 143c99ef4b
2 changed files with 4 additions and 1 deletions

View file

@ -2290,7 +2290,7 @@
"description": "EGL: Add eglSetDamageRegionKHR to GLVND dispatch list",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"master_sha": null,
"because_sha": "9827547313c7239486efbd4067529575f98f1622"
},

View file

@ -213,5 +213,8 @@ EGL_FUNCTIONS = (
_eglFunc("eglGetDisplayDriverName", "display"),
_eglFunc("eglGetDisplayDriverConfig", "display"),
# EGL_KHR_partial_update
_eglFunc("eglSetDamageRegionKHR", "display"),
)