wut  1.0.0-beta8
Wii U Toolchain
utils.h
Go to the documentation of this file.
1 #pragma once
2 #include <wut.h>
3 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 typedef enum GX2_SQ_SEL
15 {
20 
25 
29 } GX2_SQ_SEL;
30 
31 #define GX2_SEL_MASK(x, y, z, w) (((x) << 24) | ((y) << 16) | ((z) << 8) | (w))
32 #define GX2_COMP_MAP(x, y, z, w) (((x) << 24) | ((y) << 16) | ((z) << 8) | (w))
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
GX2_SQ_SEL
Definition: utils.h:14