GLES: Implement logic ops via fb fetch

This commit is contained in:
wheremyfoodat 2024-10-13 22:18:17 +03:00
parent 96f684e51c
commit 511e05becf
8 changed files with 89 additions and 6 deletions

View file

@ -0,0 +1,9 @@
#pragma once
// Information about our OpenGL/OpenGL ES driver that we should keep track of
// Stuff like whether specific extensions are supported, and potentially things like OpenGL context information
namespace OpenGL {
struct Driver {
bool supportsFbFetch = false;
};
} // namespace OpenGL