MXVK Vulkan Framework 0.24.0
C++20 Vulkan rendering framework for practical 2D and 3D application development with SDL3.
Loading...
Searching...
No Matches
main.cpp File Reference
#include "mxvk/argz.hpp"
#include "mxvk/mxvk.hpp"
#include "mxvk/mxvk_cv.hpp"
#include "mxvk/mxvk_exception.hpp"
#include <array>
#include <chrono>
#include <cstdlib>
#include <format>
#include <iostream>
#include <opencv2/videoio.hpp>
#include <string>

Go to the source code of this file.

Classes

class  example::ExampleWindow

Namespaces

namespace  example

Macros

#define opencv_example_ASSET_DIR   "."
#define opencv_example_SHADER_DIR   "."

Functions

int main (int argc, char **argv)

Macro Definition Documentation

◆ opencv_example_ASSET_DIR

#define opencv_example_ASSET_DIR   "."

Definition at line 14 of file main.cpp.

◆ opencv_example_SHADER_DIR

#define opencv_example_SHADER_DIR   "."

Definition at line 18 of file main.cpp.

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 203 of file main.cpp.

203 {
204 try {
205 Arguments args = proc_args(argc, argv);
206 example::ExampleWindow ex_window(args, "OpenCV Example");
207 ex_window.loop();
208 } catch (mxvk::Exception &e) {
209 std::cerr << std::format("mxvk: Exception: {}\n", e.text());
210 return EXIT_FAILURE;
211 } catch (ArgException<std::string> &e) {
212 std::cerr << std::format("mxvk: Argument Exception: {}\n", e.text());
213 }
214 return EXIT_SUCCESS;
215}
Arguments proc_args(int &argc, char **argv)
Parse standard libmx2 command-line options from main()'s argv.
Definition argz.hpp:872
Exception thrown by Argz::proc() on unrecognised or malformed options.
Definition argz.hpp:178
String text() const
Definition argz.hpp:182
std::string text() const
Plain data structure returned by proc_args() with all common libmx2 CLI options.
Definition argz.hpp:730