Software: Implement points

This commit is contained in:
Pokechu22
2020-12-22 15:00:40 -08:00
parent 8e348b87e9
commit fcd3efa1ae
3 changed files with 50 additions and 0 deletions

View File

@ -14,6 +14,8 @@ void ProcessTriangle(OutputVertexData* v0, OutputVertexData* v1, OutputVertexDat
void ProcessLine(OutputVertexData* v0, OutputVertexData* v1);
void ProcessPoint(OutputVertexData* v);
bool CullTest(const OutputVertexData* v0, const OutputVertexData* v1, const OutputVertexData* v2,
bool& backface);