This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
SoftwareRasterizer/include/types.h

14 lines
189 B
C
Raw Normal View History

#pragma once
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
#define SWAP(T, a, b) \
do { \
T tmp = a; \
a = b; \
b = tmp; \
} while (0)