- Start work on drawlist

- Fix issue in texloader
- add ivec2 to tecloader / screen
- add draw func for iron
- add bufCfg in 3 variants to c3d
- add poc for c3d_permutation
This commit is contained in:
2025-11-24 14:25:35 +01:00
parent f0117e07d4
commit a9eed546b9
14 changed files with 212 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
# Citro3D Shader Buf info Permutation calculation
```cpp
// Why do
BufInfo_Add(buf, data, sizeof(data[0]), 3, 0x210);
BufInfo_Add(buf, data, sizeof(data[0]), 4, 0x3210);
// if we can do
BufInfo_Add(buf, data, sizeof(data[0]), 3, permutation(3));
BufInfo_Add(buf, data, sizeof(data[0]), 3, permutation(4));
```