summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-21 13:59:00 +0200
committerLioncash <mathew1800@gmail.com>2018-09-21 13:59:03 +0200
commitba02dd9ebcc2e984db496d2884fc331d7233709f (patch)
tree0dd68b11abc8cba2f00a9572337515c398e01d6f /src/video_core
parentMerge pull request #1370 from Hedges/GDBClean (diff)
downloadyuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar.gz
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar.bz2
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar.lz
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar.xz
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.tar.zst
yuzu-ba02dd9ebcc2e984db496d2884fc331d7233709f.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/renderer_opengl/gl_stream_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_stream_buffer.cpp b/src/video_core/renderer_opengl/gl_stream_buffer.cpp
index 664f3ca20..e409228cc 100644
--- a/src/video_core/renderer_opengl/gl_stream_buffer.cpp
+++ b/src/video_core/renderer_opengl/gl_stream_buffer.cpp
@@ -74,7 +74,7 @@ std::tuple<u8*, GLintptr, bool> OGLStreamBuffer::Map(GLsizeiptr size, GLintptr a
}
}
- if (invalidate | !persistent) {
+ if (invalidate || !persistent) {
GLbitfield flags = GL_MAP_WRITE_BIT | (persistent ? GL_MAP_PERSISTENT_BIT : 0) |
(coherent ? GL_MAP_COHERENT_BIT : GL_MAP_FLUSH_EXPLICIT_BIT) |
(invalidate ? GL_MAP_INVALIDATE_BUFFER_BIT : GL_MAP_UNSYNCHRONIZED_BIT);