| 5 | #include <glad/glad_wgl.h> |
| 6 | |
| 7 | TextureGL::TextureGL() |
| 8 | : Texture(0) |
| 9 | , Framebuffer(0) |
| 10 | , ResolveTexture(0) |
| 11 | , ResolveFramebuffer(0) |
| 12 | , m_Width(0) |
| 13 | , m_Height(0) |
| 14 | , m_InteropTexture(0) |
| 15 | { |
| 16 | } |
| 17 | |
| 18 | TextureGL::~TextureGL() |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected