summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJustin Chadwick <JMC4789@gmail.com>2014-07-04 08:00:49 -0400
committerJustin Chadwick <JMC4789@gmail.com>2014-07-04 08:00:49 -0400
commit43dcbe0a7358c440ef596fe48403c2d2d8a45dcf (patch)
treec5f1c17ca2e45fc5dedebb840ac8fede038f6fad /Source
parent30f93ab4186bd69bd39bce015907753e9665ccd3 (diff)
Change the comments to be more detailed.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoBackends/OGL/StreamBuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/OGL/StreamBuffer.cpp b/Source/Core/VideoBackends/OGL/StreamBuffer.cpp
index cbcf210957..fd49d1b3cd 100644
--- a/Source/Core/VideoBackends/OGL/StreamBuffer.cpp
+++ b/Source/Core/VideoBackends/OGL/StreamBuffer.cpp
@@ -346,7 +346,7 @@ StreamBuffer* StreamBuffer::Create(u32 type, u32 size)
// Prefer the syncing buffers over the orphaning one
if (g_ogl_config.bSupportsGLSync)
{
- // pinned memory is much faster on amd cards
+ // pinned memory is much faster than buffer storage on amd cards
if (g_ogl_config.bSupportsGLPinnedMemory &&
!(DriverDetails::HasBug(DriverDetails::BUG_BROKENPINNEDMEMORY) && type == GL_ELEMENT_ARRAY_BUFFER))
return new PinnedMemory(type, size);