A small OpenGL 3+ renderer and game engine
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#pragma once |
|
|
|
#include <cstdint> |
|
|
|
|
|
typedef uint8_t u8; |
|
typedef uint16_t u16; |
|
typedef uint32_t u32; |
|
typedef uint64_t u64; |
|
|
|
typedef int32_t i32; |
|
typedef int64_t i64;
|
|
|