summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-05-07 16:57:16 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-06-21 02:36:12 +0200
commitbc930754cc9437ddd86e7d246b3eb4302540896a (patch)
tree75e56e5e041db7b327a13c25ab13bc524458dc29 /src/video_core/renderer_opengl/utils.h
parentCorrect Surface Base and Views for new Texture Cache (diff)
downloadyuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar.gz
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar.bz2
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar.lz
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar.xz
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.tar.zst
yuzu-bc930754cc9437ddd86e7d246b3eb4302540896a.zip
Diffstat (limited to 'src/video_core/renderer_opengl/utils.h')
-rw-r--r--src/video_core/renderer_opengl/utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/renderer_opengl/utils.h b/src/video_core/renderer_opengl/utils.h
index e7726d14e..8977d2383 100644
--- a/src/video_core/renderer_opengl/utils.h
+++ b/src/video_core/renderer_opengl/utils.h
@@ -39,8 +39,8 @@ public:
explicit SurfaceBlitter();
~SurfaceBlitter();
- void Blit(CachedSurfaceView* src, CachedSurfaceView* dst,
- const Common::Rectangle<u32>& src_rect, const Common::Rectangle<u32>& dst_rect) const;
+ void Blit(View src, View dst, const Common::Rectangle<u32>& src_rect,
+ const Common::Rectangle<u32>& dst_rect) const;
private:
OGLFramebuffer src_framebuffer;
@@ -49,4 +49,4 @@ private:
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});
-} // namespace OpenGL \ No newline at end of file
+} // namespace OpenGL