summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/utils.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/video_core/renderer_opengl/utils.h b/src/video_core/renderer_opengl/utils.h
index 8977d2383..77e8d53ba 100644
--- a/src/video_core/renderer_opengl/utils.h
+++ b/src/video_core/renderer_opengl/utils.h
@@ -34,19 +34,6 @@ private:
std::vector<GLsizeiptr> sizes;
};
-class SurfaceBlitter {
-public:
- explicit SurfaceBlitter();
- ~SurfaceBlitter();
-
- void Blit(View src, View dst, const Common::Rectangle<u32>& src_rect,
- const Common::Rectangle<u32>& dst_rect) const;
-
-private:
- OGLFramebuffer src_framebuffer;
- OGLFramebuffer dst_framebuffer;
-};
-
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});
} // namespace OpenGL