GLES: Add support for GL_ARM_shader_framebuffer_fetch

This commit is contained in:
wheremyfoodat 2024-10-13 23:47:27 +03:00
parent 001ebec631
commit 2460050e8d
3 changed files with 22 additions and 5 deletions

View file

@ -4,6 +4,9 @@
// Stuff like whether specific extensions are supported, and potentially things like OpenGL context information
namespace OpenGL {
struct Driver {
bool supportsFbFetch = false;
bool supportsExtFbFetch = false;
bool supportsArmFbFetch = false;
bool supportFbFetch() const { return supportsExtFbFetch || supportsArmFbFetch; }
};
} // namespace OpenGL