0

[skia] Bind missing query functions in command buffer bindings

Bug: skia:374112296
Change-Id: I9c8b717ce4bb0113ea1ba408e7d2eb35bfbe161c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5971853
Auto-Submit: Michael Ludwig <michaelludwig@google.com>
Reviewed-by: Saifuddin Hitawala <hitawala@chromium.org>
Commit-Queue: Michael Ludwig <michaelludwig@google.com>
Cr-Commit-Position: refs/heads/main@{#1374748}
This commit is contained in:
Michael Ludwig
2024-10-28 18:26:10 +00:00
committed by Chromium LUCI CQ
parent fbcbb8790a
commit b26a34edc2

@ -196,6 +196,10 @@ sk_sp<GrGLInterface> CreateGLES2InterfaceBindings(
gles_bind(&GLES2Interface::GetQueryivEXT, impl, context_support);
functions->fGetQueryObjectuiv =
gles_bind(&GLES2Interface::GetQueryObjectuivEXT, impl, context_support);
functions->fGetQueryObjecti64v =
gles_bind(&GLES2Interface::GetQueryObjecti64vEXT, impl, context_support);
functions->fGetQueryObjectui64v =
gles_bind(&GLES2Interface::GetQueryObjectui64vEXT, impl, context_support);
functions->fGetShaderInfoLog =
gles_bind(&GLES2Interface::GetShaderInfoLog, impl, context_support);
functions->fGetShaderiv =
@ -366,6 +370,8 @@ sk_sp<GrGLInterface> CreateGLES2InterfaceBindings(
&GLES2Interface::GetRenderbufferParameteriv, impl, context_support);
functions->fGenQueries =
gles_bind(&GLES2Interface::GenQueriesEXT, impl, context_support);
functions->fQueryCounter =
gles_bind(&GLES2Interface::QueryCounterEXT, impl, context_support);
functions->fRenderbufferStorage =
gles_bind(&GLES2Interface::RenderbufferStorage, impl, context_support);
functions->fRenderbufferStorageMultisample =