diff options
| author | 2018-12-26 17:32:30 -0500 | |
|---|---|---|
| committer | 2018-12-26 17:32:32 -0500 | |
| commit | 67fa21e143778090964a744cd46ff17829591b7d (patch) | |
| tree | 87baf60c599a27982934f087f17d1abd2860e064 | |
| parent | Fixed shader linking error due to TLDS (#1934) (diff) | |
| download | yuzu-67fa21e143778090964a744cd46ff17829591b7d.tar.gz yuzu-67fa21e143778090964a744cd46ff17829591b7d.tar.xz yuzu-67fa21e143778090964a744cd46ff17829591b7d.zip | |
renderer_opengl: Correct forward declaration of FramebufferLayout
This is actually a struct, not a class, which can lead to compilation
warnings.
| -rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.h b/src/video_core/renderer_opengl/renderer_opengl.h index 067fad81b..b85cc262f 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.h +++ b/src/video_core/renderer_opengl/renderer_opengl.h | |||
| @@ -17,7 +17,7 @@ class EmuWindow; | |||
| 17 | } | 17 | } |
| 18 | 18 | ||
| 19 | namespace Layout { | 19 | namespace Layout { |
| 20 | class FramebufferLayout; | 20 | struct FramebufferLayout; |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | namespace OpenGL { | 23 | namespace OpenGL { |