refactoring, renaming and commenting

pull/3471/head
kallaballa 2 years ago
parent cd6905e77e
commit 3496d28c24
  1. 2
      src/nanovg/nanovg-demo.cpp
  2. 2
      src/optflow/optflow-demo.cpp
  3. 2
      src/tetra/tetra-demo.cpp
  4. 2
      src/video/video-demo.cpp

@ -216,7 +216,7 @@ int main(int argc, char **argv) {
//Transfer buffer ownership back to OpenGL
gl::release_to_gl(frameBuffer);
//if x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
//If x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
if(!gl::display())
break;

@ -250,7 +250,7 @@ int main(int argc, char **argv) {
cv::cvtColor(frameBuffer, videoFrame, cv::COLOR_BGRA2RGB);
gl::release_to_gl(frameBuffer);
//if x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
//If x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
if(!gl::display())
break;

@ -128,7 +128,7 @@ int main(int argc, char **argv) {
//Release the frame buffer for use by OpenGL
gl::release_to_gl(frameBuffer);
//if x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
//If x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
if(!gl::display())
break;

@ -167,7 +167,7 @@ int main(int argc, char **argv) {
//Release the frame buffer for use by OpenGL
gl::release_to_gl(frameBuffer);
//if x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
//If x11 is enabled it displays the framebuffer in the native window. Returns false if the window was closed.
if(!gl::display())
break;

Loading…
Cancel
Save