Browse Source
Merge pull request #1594 from FreddyFunk/static-cast
gl_rasterizer_cache: Fix compiler warning
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
|
|
|
@ -960,8 +960,8 @@ void CachedSurface::FlushGLBuffer() { |
|
|
|
glPixelStorei(GL_PACK_ROW_LENGTH, static_cast<GLint>(params.width)); |
|
|
|
ASSERT(!tuple.compressed); |
|
|
|
glBindBuffer(GL_PIXEL_PACK_BUFFER, 0); |
|
|
|
glGetTextureImage(texture.handle, 0, tuple.format, tuple.type, gl_buffer.size(), |
|
|
|
gl_buffer.data()); |
|
|
|
glGetTextureImage(texture.handle, 0, tuple.format, tuple.type, |
|
|
|
static_cast<GLsizei>(gl_buffer.size()), gl_buffer.data()); |
|
|
|
glPixelStorei(GL_PACK_ROW_LENGTH, 0); |
|
|
|
ConvertFormatAsNeeded_FlushGLBuffer(gl_buffer, params.pixel_format, params.width, |
|
|
|
params.height); |
|
|
|
|