summaryrefslogtreecommitdiff
path: root/include/swgfx.h
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2026-02-12 18:24:14 -0800
committer3gg <3gg@shellblade.net>2026-02-12 18:24:14 -0800
commit5f7855b6aa0e3338625eb7d30e8ccc5b74050bbf (patch)
treefc6ae60f612de4193a96768250997487a524881e /include/swgfx.h
parent2ce59d54aa110a2c1fc1105855f628c5512f8dac (diff)
Deferred pipeline
Diffstat (limited to 'include/swgfx.h')
-rw-r--r--include/swgfx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/swgfx.h b/include/swgfx.h
index a1ce872..57ba472 100644
--- a/include/swgfx.h
+++ b/include/swgfx.h
@@ -111,9 +111,9 @@ void sgTriangleStrip (swgfx*, size_t count, const sgVec3*, const sgNormal*);
111void sgTrianglesIndexed(swgfx*, size_t numIndices, const sgIdx* indices, const sgVec3* positions, const sgVec2* texcoords); 111void sgTrianglesIndexed(swgfx*, size_t numIndices, const sgIdx* indices, const sgVec3* positions, const sgVec2* texcoords);
112void sgTrianglesIndexedNonUniform(swgfx*, size_t numTris, const sgTriIdx* tris, const sgVec3* positions, const sgVec2* texcoords); 112void sgTrianglesIndexedNonUniform(swgfx*, size_t numTris, const sgTriIdx* tris, const sgVec3* positions, const sgVec2* texcoords);
113 113
114void sgLighting(swgfx*);
115
114void sgGamma (swgfx*, sgPixel*, int width, int height); 116void sgGamma (swgfx*, sgPixel*, int width, int height);
115void sgGammaInv(swgfx*, sgPixel*, int width, int height); 117void sgGammaInv(swgfx*, sgPixel*, int width, int height);
116 118
117sgCounters sgGetCounters(const swgfx*); 119sgCounters sgGetCounters(const swgfx*);
118
119void sgCheck(swgfx*);