Commit df0683b1 by Jonah Ryan-Davis Committed by Commit Bot

Expose GL_ANGLE_framebuffer_blit in NULL backend

The passthrough ASAN fuzzer was hitting a null-dereference trying to call glBlitFramebuffer when ANGLE was not exposing it. The fuzzer uses the NULL backend so we can just expose it. Bug: chromium:1029829 Change-Id: I0f65c65284756fa21821155559a6404d95e25647 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2003230Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Jonah Ryan-Davis <jonahr@google.com>
parent 01c0d6bd
...@@ -69,6 +69,7 @@ ContextNULL::ContextNULL(const gl::State &state, ...@@ -69,6 +69,7 @@ ContextNULL::ContextNULL(const gl::State &state,
mExtensions = gl::Extensions(); mExtensions = gl::Extensions();
mExtensions.fence = true; mExtensions.fence = true;
mExtensions.framebufferBlit = true;
mExtensions.instancedArraysANGLE = true; mExtensions.instancedArraysANGLE = true;
mExtensions.instancedArraysEXT = true; mExtensions.instancedArraysEXT = true;
mExtensions.pixelBufferObject = true; mExtensions.pixelBufferObject = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment