From: Steinar H. Gunderson Date: Sat, 6 Oct 2012 09:40:45 +0000 (+0200) Subject: Typo fix. X-Git-Tag: 1.0~370 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=4faa7b922355c43f89efd62418dfa03ebf06b9c2;ds=sidebyside Typo fix. --- diff --git a/main.cpp b/main.cpp index 7e28993..4e2d303 100644 --- a/main.cpp +++ b/main.cpp @@ -175,8 +175,8 @@ int main(int argc, char **argv) chain.add_output(inout_format); chain.finalize(); - // generate a PDO to hold the data we read back with glReadPixels() - // (Intel/DRI goes into a slow path if we don't read to PDO) + // generate a PBO to hold the data we read back with glReadPixels() + // (Intel/DRI goes into a slow path if we don't read to PBO) GLuint pbo; glGenBuffers(1, &pbo); glBindBuffer(GL_PIXEL_PACK_BUFFER_ARB, pbo);