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
9#include <stdint.h>
10#include <stddef.h>
11
16typedef enum SRPType
17{
18 TYPE_UINT8 = 0,
19 TYPE_UINT16,
20 TYPE_UINT32,
21 TYPE_UINT64,
22 TYPE_FLOAT,
23 TYPE_DOUBLE
25
26size_t srpSizeofType(SRPType type);
27
// ingroup Various
29
SRPType
Definition type.h:17