MXVK Vulkan Framework 0.24.0
C++20 Vulkan rendering framework for practical 2D and 3D application development with SDL3.
Loading...
Searching...
No Matches
mxvk_exception.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <iostream>
4#include <string>
5
6namespace mxvk {
7 class Exception {
8 public:
9 Exception(const std::string &text) : txt{text} {}
10 std::string text() const { return txt; }
11
12 private:
13 std::string txt;
14 };
15} // namespace mxvk
std::string text() const
Exception(const std::string &text)
Utilities for loading and saving PNG images.
Definition mxvk.hpp:30