-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvengine.hpp
More file actions
30 lines (26 loc) · 757 Bytes
/
Copy pathvengine.hpp
File metadata and controls
30 lines (26 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once
/**
* @brief Vengine, a C++17 Vulkan barebone engine.
* The main header file to include to use the Vengine library.
* @file vengine.hpp
* @author Tommaso Bonvicini <tommasobonvicini@gmail.com>
* https://github.com/MuAlphaOmegaEpsilon/vengine
* @date 01-07-2019
*/
#include <memory>
#include <stdint.h>
template <class T>
using uptr = std::unique_ptr <T>;
template <class T>
using sptr = std::shared_ptr <T>;
using ui8 = uint8_t;
using ui16 = uint16_t;
using ui32 = uint32_t;
using ui64 = uint64_t;
using i8 = int8_t;
using i16 = int16_t;
using i32 = int32_t;
using i64 = int64_t;
#include <vengine/algorithm.hpp>
#include <vulkan/vulkan.h> // Vulkan header
#include <vengine/vulkan.hpp> // Vengine customized Vulkan API