diff options
author | N00byKing <N00byKing@users.noreply.github.com> | 2018-04-04 23:03:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 23:03:02 +0200 |
commit | ca17f581f59364ff54a5b8a220e3fef46795fe77 (patch) | |
tree | 04f3128d9e881018628d089ba25c1bdc13dfac6a /src | |
parent | Merge pull request #308 from bunnei/misc-fixes-2 (diff) | |
download | yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar.gz yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar.bz2 yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar.lz yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar.xz yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.tar.zst yuzu-ca17f581f59364ff54a5b8a220e3fef46795fe77.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.h b/src/video_core/renderer_opengl/renderer_opengl.h index fffd0f9f4..c52f40037 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.h +++ b/src/video_core/renderer_opengl/renderer_opengl.h @@ -14,7 +14,7 @@ class EmuWindow; -/// Structure used for storing information about the textures for each 3DS screen +/// Structure used for storing information about the textures for the Switch screen struct TextureInfo { OGLTexture resource; GLsizei width; @@ -24,7 +24,7 @@ struct TextureInfo { Tegra::FramebufferConfig::PixelFormat pixel_format; }; -/// Structure used for storing information about the display target for each 3DS screen +/// Structure used for storing information about the display target for the Switch screen struct ScreenInfo { GLuint display_texture; MathUtil::Rectangle<float> display_texcoords; |