refactoring, renaming and commenting

pull/3471/head
kallaballa 2 years ago
parent b0b736f402
commit 7e13fb0a05
  1. 2
      modules/viz2d/samples/cpp/Doxyfile
  2. 4
      modules/viz2d/samples/cpp/font/font-demo.cpp

@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places. # title of most generated pages and in a few other places.
# The default value is: My Project. # The default value is: My Project.
PROJECT_NAME = "A 2D visualization module with CL-interop capabilities and a GUI based on NanoGUI" PROJECT_NAME = "A visualization module with vector graphics, a GUI system and CL-interop capabilities"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version

@ -223,10 +223,10 @@ int main(int argc, char **argv) {
lines.push_back(line); lines.push_back(line);
} }
#ifndef __EMSCRIPTEN__ #ifndef __EMSCRIPTEN__
Sink sink = makeWriterSink(OUTPUT_FILENAME, cv::VideoWriter::fourcc('V', 'P', '9', '0'), FPS, cv::Size(WIDTH, HEIGHT)); Sink sink = makeWriterSink(OUTPUT_FILENAME, cv::VideoWriter::fourcc('V', 'P', '9', '0'), FPS, cv::Size(WIDTH, HEIGHT));
v2d->setSink(sink); v2d->setSink(sink);
#endif #endif
v2d->run(iteration); v2d->run(iteration);
} catch(std::exception& ex) { } catch(std::exception& ex) {

Loading…
Cancel
Save