This commit is contained in:
raven02 2015-06-22 09:07:55 -07:00
parent d2de2bf652
commit 68e12a4664
1 changed files with 2 additions and 2 deletions

View File

@ -2878,9 +2878,9 @@ bool CommandProcessor::IssueCopy() {
glDepthMask(GL_TRUE);
glStencilMask(0xFF);
glClearNamedFramebufferfv(source_framebuffer->framebuffer, GL_DEPTH,
0, @depth);
0, &depth);
glClearNamedFramebufferiv(source_framebuffer->framebuffer, GL_STENCIL,
0, #stencil);
0, &stencil);
glDepthMask(old_depth_mask);
glStencilMask(old_stencil_mask);
}