[Impeller] disable texture to texture blit in GLES. (flutter/engine#46443)

These are failing with a GL_INVALID_OPERATION.
This commit is contained in:
Jonah Williams
2023-09-30 16:49:17 -07:00
committed by GitHub
parent 1ed62ee900
commit a7bac4e984

View File

@@ -65,8 +65,7 @@ ContextGLES::ContextGLES(std::unique_ptr<ProcTableGLES> gl,
.SetSupportsOffscreenMSAA(false)
.SetSupportsSSBO(false)
.SetSupportsBufferToTextureBlits(false)
.SetSupportsTextureToTextureBlits(
reactor_->GetProcTable().BlitFramebuffer.IsAvailable())
.SetSupportsTextureToTextureBlits(false)
.SetSupportsFramebufferFetch(false)
.SetDefaultColorFormat(PixelFormat::kR8G8B8A8UNormInt)
.SetDefaultStencilFormat(PixelFormat::kS8UInt)