From 0de40d4f270c62a96aa0194fcd176a39d393e46c Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Tue, 20 Oct 2020 21:16:34 +0100 Subject: [PATCH] More restructure --- GL/flush.c | 80 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 51 insertions(+), 29 deletions(-) diff --git a/GL/flush.c b/GL/flush.c index c1c1e96..5122840 100644 --- a/GL/flush.c +++ b/GL/flush.c @@ -21,37 +21,57 @@ static const int STRIDE = sizeof(Vertex) / sizeof(GLuint); typedef struct { int count; Vertex* current; + GLboolean current_is_vertex; } ListIterator; +GL_FORCE_INLINE GLboolean isVertex(const Vertex* vertex) { + return ( + vertex->flags == PVR_CMD_VERTEX || + vertex->flags == PVR_CMD_VERTEX_EOL + ); +} + +GL_FORCE_INLINE GLboolean isVisible(const Vertex* vertex) { + return vertex->w >= 0 && vertex->xyz[2] >= -vertex->w; +} + static inline ListIterator* next(ListIterator* it) { /* Move the list iterator to the next vertex to * submit. Takes care of clipping the triangle strip * and perspective dividing the vertex before * returning */ - if(--it->count) { + while(--it->count) { it->current++; + + /* Ignore dead vertices */ + if(it->current->flags == DEAD) { + continue; + } + + /* If this is a header, then we submit! */ + it->current_is_vertex = isVertex(it->current); + + if(it->current_is_vertex) { + return it; + } + + /* All other vertices are fine */ return it; - } else { - return NULL; } + + return NULL; } static inline ListIterator* begin(void* src, int n) { ListIterator* it = (ListIterator*) malloc(sizeof(ListIterator)); it->count = n; it->current = (Vertex*) src; + it->current_is_vertex = GL_FALSE; return (n) ? it : NULL; } -GL_FORCE_INLINE isVertex(const Vertex* vertex) { - return ( - vertex->flags == PVR_CMD_VERTEX || - vertex->flags == PVR_CMD_VERTEX_EOL - ); -} - static inline void perspective_divide(Vertex* vertex) { float f = MATH_Fast_Invert(vertex->w); vertex->xyz[0] *= f; @@ -63,32 +83,34 @@ static inline void perspective_divide(Vertex* vertex) { static void pvr_list_submit(void *src, int n) { GLuint *d = TA_SQ_ADDR; + /* First entry is assumed to always be a header and therefore + * always submitted (e.g. not clipped) */ + ListIterator* it = begin(src, n); /* fill/write queues as many times necessary */ while(it) { __asm__("pref @%0" : : "r"(it->current + 1)); /* prefetch 64 bytes for next loop */ - if(it->current->flags != DEAD) { - if(isVertex(it->current)) { - perspective_divide(it->current); - } - GLuint* s = (GLuint*) it->current; - - d[0] = *(s++); - d[1] = *(s++); - d[2] = *(s++); - d[3] = *(s++); - d[4] = *(s++); - d[5] = *(s++); - d[6] = *(s++); - d[7] = *(s++); - - /* This prefetch actually commits 32 bytes to the SQ */ - __asm__("pref @%0" : : "r"(d)); - - d += 8; /* Move to the next SQ address */ + if(it->current_is_vertex) { + perspective_divide(it->current); } + GLuint* s = (GLuint*) it->current; + + d[0] = *(s++); + d[1] = *(s++); + d[2] = *(s++); + d[3] = *(s++); + d[4] = *(s++); + d[5] = *(s++); + d[6] = *(s++); + d[7] = *(s++); + + /* This prefetch actually commits 32 bytes to the SQ */ + __asm__("pref @%0" : : "r"(d)); + + d += 8; /* Move to the next SQ address */ + it = next(it); }