mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
13 lines
No EOL
446 B
C++
13 lines
No EOL
446 B
C++
#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 usingGLES = false;
|
|
bool supportsExtFbFetch = false;
|
|
bool supportsArmFbFetch = false;
|
|
|
|
bool supportFbFetch() const { return supportsExtFbFetch || supportsArmFbFetch; }
|
|
};
|
|
} // namespace OpenGL
|