mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
GLES: Add support for GL_ARM_shader_framebuffer_fetch
This commit is contained in:
parent
001ebec631
commit
2460050e8d
3 changed files with 22 additions and 5 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue