GLdc/GL/platforms/sh4.c

463 lines
14 KiB
C
Raw Normal View History

2021-04-09 15:24:47 +00:00
#include "../platform.h"
#include "sh4.h"
2022-06-13 19:05:54 +00:00
#define CLIP_DEBUG 0
2021-04-09 15:24:47 +00:00
#define PVR_VERTEX_BUF_SIZE 2560 * 256
2022-06-09 12:07:51 +00:00
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#define SQ_BASE_ADDRESS 0xe0000000
static volatile uint32_t* PVR_LMMODE0 = (uint32_t*) 0xA05F6884;
2022-06-09 12:07:51 +00:00
GL_FORCE_INLINE bool glIsVertex(const float flags) {
return flags == GPU_CMD_VERTEX_EOL || flags == GPU_CMD_VERTEX;
}
GL_FORCE_INLINE bool glIsLastVertex(const float flags) {
return flags == GPU_CMD_VERTEX_EOL;
}
2021-04-09 15:24:47 +00:00
void InitGPU(_Bool autosort, _Bool fsaa) {
pvr_init_params_t params = {
/* Enable opaque and translucent polygons with size 32 and 32 */
{PVR_BINSIZE_32, PVR_BINSIZE_0, PVR_BINSIZE_32, PVR_BINSIZE_0, PVR_BINSIZE_32},
PVR_VERTEX_BUF_SIZE, /* Vertex buffer size */
0, /* No DMA */
fsaa, /* No FSAA */
(autosort) ? 0 : 1 /* Disable translucent auto-sorting to match traditional GL */
};
pvr_init(&params);
}
void SceneBegin() {
pvr_wait_ready();
pvr_scene_begin();
QACR0 = 0x11; /* Enable the direct texture path by setting the higher two bits */
QACR1 = 0x11;
2021-04-09 15:24:47 +00:00
}
void SceneListBegin(GPUList list) {
pvr_list_begin(list);
}
2022-06-09 12:07:51 +00:00
GL_FORCE_INLINE void _glPerspectiveDivideVertex(Vertex* vertex, const float h) {
const float f = MATH_Fast_Invert(vertex->w);
/* Convert to NDC and apply viewport */
vertex->xyz[0] = __builtin_fmaf(
VIEWPORT.hwidth, vertex->xyz[0] * f, VIEWPORT.x_plus_hwidth
);
vertex->xyz[1] = h - __builtin_fmaf(
VIEWPORT.hheight, vertex->xyz[1] * f, VIEWPORT.y_plus_hheight
);
/* Orthographic projections need to use invZ otherwise we lose
the depth information. As w == 1, and clip-space range is -w to +w
we add 1.0 to the Z to bring it into range. We add a little extra to
avoid a divide by zero.
*/
if(unlikely(vertex->w == 1.0f)) {
vertex->xyz[2] = MATH_Fast_Invert(1.0001f + vertex->xyz[2]);
} else {
vertex->xyz[2] = f;
2021-04-09 15:24:47 +00:00
}
2022-06-09 12:07:51 +00:00
}
static uint32_t *d; // SQ target
GL_FORCE_INLINE void _glSubmitHeaderOrVertex(const Vertex* v) {
2022-06-10 19:27:21 +00:00
#ifndef NDEBUG
2022-08-25 20:24:08 +00:00
gl_assert(!isnan(v->xyz[2]));
gl_assert(!isnan(v->w));
2022-06-10 19:27:21 +00:00
#endif
2022-06-13 19:05:54 +00:00
#if CLIP_DEBUG
printf("Submitting: %x (%x)\n", v, v->flags);
#endif
2022-06-09 12:07:51 +00:00
uint32_t *s = (uint32_t*) v;
__asm__("pref @%0" : : "r"(s + 8)); /* prefetch 32 bytes for next loop */
d[0] = *(s++);
d[1] = *(s++);
d[2] = *(s++);
d[3] = *(s++);
d[4] = *(s++);
d[5] = *(s++);
d[6] = *(s++);
d[7] = *(s++);
__asm__("pref @%0" : : "r"(d));
d += 8;
}
static struct {
Vertex* v;
int visible;
} triangle[3];
static int tri_count = 0;
2022-06-10 19:27:21 +00:00
static int strip_count = 0;
GL_FORCE_INLINE void interpolateColour(const uint8_t* v1, const uint8_t* v2, const float t, uint8_t* out) {
const int MASK1 = 0x00FF00FF;
const int MASK2 = 0xFF00FF00;
const int f2 = 256 * t;
const int f1 = 256 - f2;
2022-06-09 12:07:51 +00:00
2022-06-10 19:27:21 +00:00
const uint32_t a = *(uint32_t*) v1;
const uint32_t b = *(uint32_t*) v2;
*((uint32_t*) out) = (((((a & MASK1) * f1) + ((b & MASK1) * f2)) >> 8) & MASK1) |
(((((a & MASK2) * f1) + ((b & MASK2) * f2)) >> 8) & MASK2);
}
2022-06-09 12:07:51 +00:00
GL_FORCE_INLINE void _glClipEdge(const Vertex* v1, const Vertex* v2, Vertex* vout) {
/* Clipping time! */
const float d0 = v1->w + v1->xyz[2];
const float d1 = v2->w + v2->xyz[2];
2022-06-11 20:27:09 +00:00
const float epsilon = (d0 < d1) ? -0.00001f : 0.00001f;
2022-06-09 12:07:51 +00:00
2022-06-11 20:27:09 +00:00
float t = MATH_Fast_Divide(d0, (d0 - d1)) + epsilon;
2022-06-09 12:07:51 +00:00
2022-06-11 20:27:09 +00:00
t = (t > 1.0f) ? 1.0f : t;
t = (t < 0.0f) ? 0.0f : t;
vout->xyz[0] = __builtin_fmaf(v2->xyz[0] - v1->xyz[0], t, v1->xyz[0]);
vout->xyz[1] = __builtin_fmaf(v2->xyz[1] - v1->xyz[1], t, v1->xyz[1]);
vout->xyz[2] = __builtin_fmaf(v2->xyz[2] - v1->xyz[2], t, v1->xyz[2]);
vout->w = __builtin_fmaf(v2->w - v1->w, t, v1->w);
vout->uv[0] = __builtin_fmaf(v2->uv[0] - v1->uv[0], t, v1->uv[0]);
vout->uv[1] = __builtin_fmaf(v2->uv[1] - v1->uv[1], t, v1->uv[1]);
2022-06-09 12:07:51 +00:00
2022-06-10 19:27:21 +00:00
interpolateColour(v1->bgra, v2->bgra, t, vout->bgra);
2022-06-09 12:07:51 +00:00
}
GL_FORCE_INLINE void ClearTriangle() {
tri_count = 0;
}
GL_FORCE_INLINE void ShiftTriangle() {
2022-06-10 19:27:21 +00:00
if(!tri_count) {
return;
}
2022-06-09 12:07:51 +00:00
tri_count--;
2022-06-13 19:05:54 +00:00
triangle[0] = triangle[1];
triangle[1] = triangle[2];
2022-06-09 12:07:51 +00:00
#ifndef NDEBUG
triangle[2].v = NULL;
triangle[2].visible = false;
#endif
}
2022-06-13 19:05:54 +00:00
GL_FORCE_INLINE void ShiftRotateTriangle() {
if(!tri_count) {
return;
}
if(triangle[0].v < triangle[1].v) {
triangle[0] = triangle[2];
} else {
triangle[1] = triangle[2];
}
tri_count--;
}
#define SPAN_SORT_CFG 0x005F8030
2022-06-13 19:05:54 +00:00
2022-06-09 12:07:51 +00:00
void SceneListSubmit(void* src, int n) {
/* Do everything, everywhere, all at once */
PVR_SET(SPAN_SORT_CFG, 0x0);
2022-06-09 12:07:51 +00:00
/* Prep store queues */
d = (uint32_t*) SQ_BASE_ADDRESS;
*PVR_LMMODE0 = 0x0; /* Enable 64bit mode */
2022-06-09 12:07:51 +00:00
/* Perform perspective divide on each vertex */
Vertex* vertex = (Vertex*) src;
const float h = GetVideoMode()->height;
2021-04-09 15:24:47 +00:00
2022-06-13 19:16:37 +00:00
if(!ZNEAR_CLIPPING_ENABLED) {
for(int i = 0; i < n; ++i, ++vertex) {
PREFETCH(vertex + 1);
if(glIsVertex(vertex->flags)) {
_glPerspectiveDivideVertex(vertex, h);
}
_glSubmitHeaderOrVertex(vertex);
}
/* Wait for both store queues to complete */
d = (uint32_t *) SQ_BASE_ADDRESS;
2022-06-13 19:16:37 +00:00
d[0] = d[8] = 0;
return;
}
2022-06-09 12:07:51 +00:00
tri_count = 0;
2022-06-10 19:27:21 +00:00
strip_count = 0;
2022-06-09 12:07:51 +00:00
2022-06-13 19:05:54 +00:00
#if CLIP_DEBUG
printf("----\n");
#endif
for(int i = 0; i < n; ++i, ++vertex) {
2022-06-09 12:07:51 +00:00
PREFETCH(vertex + 1);
bool is_last_in_strip = glIsLastVertex(vertex->flags);
/* Wait until we fill the triangle */
if(tri_count < 3) {
if(likely(glIsVertex(vertex->flags))) {
triangle[tri_count].v = vertex;
2022-06-12 18:53:26 +00:00
triangle[tri_count].visible = vertex->xyz[2] >= -vertex->w;
2022-06-09 12:07:51 +00:00
tri_count++;
strip_count++;
} else {
/* We hit a header */
tri_count = 0;
strip_count = 0;
_glSubmitHeaderOrVertex(vertex);
}
if(tri_count < 3) {
continue;
}
}
2022-06-13 19:05:54 +00:00
#if CLIP_DEBUG
printf("SC: %d\n", strip_count);
#endif
2022-06-09 12:07:51 +00:00
/* If we got here, then triangle contains 3 vertices */
int visible_mask = triangle[0].visible | (triangle[1].visible << 1) | (triangle[2].visible << 2);
if(visible_mask == 7) {
2022-06-13 19:05:54 +00:00
#if CLIP_DEBUG
printf("Visible\n");
#endif
2022-06-09 12:07:51 +00:00
/* All the vertices are visible! We divide and submit v0, then shift */
2022-06-13 19:05:54 +00:00
_glPerspectiveDivideVertex(vertex - 2, h);
_glSubmitHeaderOrVertex(vertex - 2);
2022-06-10 19:27:21 +00:00
if(is_last_in_strip) {
2022-06-13 19:05:54 +00:00
_glPerspectiveDivideVertex(vertex - 1, h);
_glSubmitHeaderOrVertex(vertex - 1);
_glPerspectiveDivideVertex(vertex, h);
_glSubmitHeaderOrVertex(vertex);
tri_count = 0;
2022-06-10 19:27:21 +00:00
strip_count = 0;
}
2022-06-13 19:05:54 +00:00
ShiftRotateTriangle();
2022-06-10 19:27:21 +00:00
} else if(visible_mask) {
2022-06-09 12:07:51 +00:00
/* Clipping time!
There are 6 distinct possibilities when clipping a triangle. 3 of them result
in another triangle, 3 of them result in a quadrilateral.
Assuming you iterate the edges of the triangle in order, and create a new *visible*
vertex when you cross the plane, and discard vertices behind the plane, then the only
difference between the two cases is that the final two vertices that need submitting have
to be reversed.
Unfortunately we have to copy vertices here, because if we persp-divide a vertex it may
be used in a subsequent triangle in the strip and would end up being double divided.
*/
2022-06-13 19:05:54 +00:00
#if CLIP_DEBUG
printf("Clip: %d, SC: %d\n", visible_mask, strip_count);
printf("%d, %d, %d\n", triangle[0].v - (Vertex*) src - 1, triangle[1].v - (Vertex*) src - 1, triangle[2].v - (Vertex*) src - 1);
#endif
2022-06-12 18:53:26 +00:00
Vertex tmp;
2022-06-13 19:05:54 +00:00
if(strip_count > 3) {
#if CLIP_DEBUG
printf("Flush\n");
#endif
tmp = *(vertex - 2);
/* If we had triangles ahead of this one, submit and finalize */
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *(vertex - 1);
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
}
2022-06-09 12:07:51 +00:00
switch(visible_mask) {
case 1: {
/* 0, 0a, 2a */
2022-06-12 18:53:26 +00:00
tmp = *triangle[0].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[0].v, triangle[1].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[2].v, triangle[0].v, &tmp);
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
case 2: {
/* 0a, 1, 1a */
2022-06-12 18:53:26 +00:00
_glClipEdge(triangle[0].v, triangle[1].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[1].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[1].v, triangle[2].v, &tmp);
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
case 3: {
/* 0, 1, 2a, 1a */
2022-06-12 18:53:26 +00:00
tmp = *triangle[0].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[1].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[2].v, triangle[0].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[1].v, triangle[2].v, &tmp);
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
case 4: {
/* 1a, 2, 2a */
2022-06-12 18:53:26 +00:00
_glClipEdge(triangle[1].v, triangle[2].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[2].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[2].v, triangle[0].v, &tmp);
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
case 5: {
/* 0, 0a, 2, 1a */
2022-06-12 18:53:26 +00:00
tmp = *triangle[0].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[0].v, triangle[1].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[2].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[1].v, triangle[2].v, &tmp);
2022-06-13 19:05:54 +00:00
tmp.flags = GPU_CMD_VERTEX_EOL;
2022-06-12 18:53:26 +00:00
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
case 6: {
/* 0a, 1, 2a, 2 */
2022-06-12 18:53:26 +00:00
_glClipEdge(triangle[0].v, triangle[1].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[1].v;
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
_glClipEdge(triangle[2].v, triangle[0].v, &tmp);
tmp.flags = GPU_CMD_VERTEX;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
tmp = *triangle[2].v;
tmp.flags = GPU_CMD_VERTEX_EOL;
_glPerspectiveDivideVertex(&tmp, h);
_glSubmitHeaderOrVertex(&tmp);
2022-06-09 12:07:51 +00:00
} break;
default:
break;
}
/* If this was the last in the strip, we don't need to
submit anything else, we just wipe the tri_count */
if(is_last_in_strip) {
tri_count = 0;
strip_count = 0;
2022-06-13 19:05:54 +00:00
} else {
ShiftRotateTriangle();
strip_count = 2;
2022-06-09 12:07:51 +00:00
}
2022-06-13 19:05:54 +00:00
} else {
/* Invisible? Move to the next in the strip */
2022-06-09 12:07:51 +00:00
2022-06-13 19:05:54 +00:00
if(is_last_in_strip) {
tri_count = 0;
strip_count = 0;
}
strip_count = 2;
ShiftRotateTriangle();
}
2022-06-09 12:07:51 +00:00
}
2022-06-13 19:05:54 +00:00
2021-04-09 15:24:47 +00:00
/* Wait for both store queues to complete */
d = (uint32_t *)0xe0000000;
d[0] = d[8] = 0;
}
void SceneListFinish() {
pvr_list_finish();
}
void SceneFinish() {
pvr_scene_finish();
}
const VideoMode* GetVideoMode() {
static VideoMode mode;
mode.width = vid_mode->width;
mode.height = vid_mode->height;
return &mode;
}