diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h index f3a163f6b..ed70d73ee 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.h +++ b/src/video_core/renderer_opengl/gl_rasterizer.h | |||
| @@ -60,20 +60,6 @@ public: | |||
| 60 | bool AccelerateDrawBatch(bool is_indexed) override; | 60 | bool AccelerateDrawBatch(bool is_indexed) override; |
| 61 | void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) override; | 61 | void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) override; |
| 62 | 62 | ||
| 63 | /// OpenGL shader generated for a given Maxwell register state | ||
| 64 | struct MaxwellShader { | ||
| 65 | /// OpenGL shader resource | ||
| 66 | OGLProgram shader; | ||
| 67 | }; | ||
| 68 | |||
| 69 | struct VertexShader { | ||
| 70 | OGLShader shader; | ||
| 71 | }; | ||
| 72 | |||
| 73 | struct FragmentShader { | ||
| 74 | OGLShader shader; | ||
| 75 | }; | ||
| 76 | |||
| 77 | /// Maximum supported size that a constbuffer can have in bytes. | 63 | /// Maximum supported size that a constbuffer can have in bytes. |
| 78 | static constexpr std::size_t MaxConstbufferSize = 0x10000; | 64 | static constexpr std::size_t MaxConstbufferSize = 0x10000; |
| 79 | static_assert(MaxConstbufferSize % sizeof(GLvec4) == 0, | 65 | static_assert(MaxConstbufferSize % sizeof(GLvec4) == 0, |