srp
software rendering pipeline
Loading...
Searching...
No Matches
type.h
Go to the documentation of this file.
1// Software Rendering Pipeline (SRP) library
2// Licensed under GNU GPLv3
3
4#pragma once
5
10#include <stdint.h>
11#include <stddef.h>
12
17typedef enum SRPType
18{
19 SRP_FLOAT = 0,
20 SRP_DOUBLE,
21 SRP_INT8,
22 SRP_INT16,
23 SRP_INT32,
24 SRP_INT64,
25 SRP_UINT8,
26 SRP_UINT16,
27 SRP_UINT32,
28 SRP_UINT64
30
// ingroup Various
SRPType
Definition type.h:18