summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-24 21:24:34 -0400
committerGravatar bunnei2018-03-26 21:16:56 -0400
commitcd8bb6ea9b185abf2bec8706b2a3f0715a46fc1d (patch)
tree996bd031f34ce26846f2e1888c71846b7a7e043c /src
parentmaxwell_to_gl: Add module and function for decoding VertexType. (diff)
downloadyuzu-cd8bb6ea9b185abf2bec8706b2a3f0715a46fc1d.tar.gz
yuzu-cd8bb6ea9b185abf2bec8706b2a3f0715a46fc1d.tar.xz
yuzu-cd8bb6ea9b185abf2bec8706b2a3f0715a46fc1d.zip
gl_rasterizer_cache: Fix an ASSERT_MSG.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer_cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
index f556dbc41..42d3730ee 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
@@ -1098,7 +1098,7 @@ SurfaceSurfaceRect_Tuple RasterizerCacheOpenGL::GetFramebufferSurfaces(
1098 color_params.pixel_format = SurfaceParams::PixelFormatFromRenderTargetFormat(config.format); 1098 color_params.pixel_format = SurfaceParams::PixelFormatFromRenderTargetFormat(config.format);
1099 color_params.UpdateParams(); 1099 color_params.UpdateParams();
1100 1100
1101 ASSERT(!using_depth_fb, "depth buffer is unimplemented"); 1101 ASSERT_MSG(!using_depth_fb, "depth buffer is unimplemented");
1102 // depth_params.addr = config.GetDepthBufferPhysicalAddress(); 1102 // depth_params.addr = config.GetDepthBufferPhysicalAddress();
1103 // depth_params.pixel_format = SurfaceParams::PixelFormatFromDepthFormat(config.depth_format); 1103 // depth_params.pixel_format = SurfaceParams::PixelFormatFromDepthFormat(config.depth_format);
1104 // depth_params.UpdateParams(); 1104 // depth_params.UpdateParams();