2018-05-05 19:38:55 +00:00
|
|
|
|
|
|
|
#include "../containers/aligned_vector.h"
|
|
|
|
#include "private.h"
|
2018-08-16 16:51:15 +00:00
|
|
|
#include "profiler.h"
|
2018-05-05 19:38:55 +00:00
|
|
|
|
2018-05-11 14:39:28 +00:00
|
|
|
static PolyList OP_LIST;
|
|
|
|
static PolyList PT_LIST;
|
|
|
|
static PolyList TR_LIST;
|
2018-05-05 19:38:55 +00:00
|
|
|
|
|
|
|
|
2019-03-03 19:02:25 +00:00
|
|
|
PolyList* _glActivePolyList() {
|
2019-03-03 19:06:01 +00:00
|
|
|
if(_glIsBlendingEnabled()) {
|
2018-05-11 14:39:28 +00:00
|
|
|
return &TR_LIST;
|
2019-03-10 17:53:58 +00:00
|
|
|
} else if(_glIsAlphaTestEnabled()) {
|
|
|
|
return &PT_LIST;
|
2018-05-11 14:39:28 +00:00
|
|
|
} else {
|
|
|
|
return &OP_LIST;
|
|
|
|
}
|
2018-05-05 19:38:55 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 19:02:25 +00:00
|
|
|
PolyList *_glTransparentPolyList() {
|
2018-08-04 20:00:26 +00:00
|
|
|
return &TR_LIST;
|
|
|
|
}
|
|
|
|
|
2019-03-10 12:19:41 +00:00
|
|
|
void APIENTRY glFlush() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void APIENTRY glFinish() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-11 19:07:59 +00:00
|
|
|
void APIENTRY glKosInitConfig(GLdcConfig* config) {
|
|
|
|
config->autosort_enabled = GL_FALSE;
|
2020-03-18 20:47:12 +00:00
|
|
|
config->fsaa_enabled = GL_FALSE;
|
|
|
|
|
2019-03-13 15:43:50 +00:00
|
|
|
config->initial_op_capacity = 1024;
|
|
|
|
config->initial_pt_capacity = 512;
|
|
|
|
config->initial_tr_capacity = 1024;
|
|
|
|
config->initial_immediate_capacity = 1024;
|
2019-03-11 19:07:59 +00:00
|
|
|
config->internal_palette_format = GL_RGBA4;
|
|
|
|
}
|
|
|
|
|
|
|
|
void APIENTRY glKosInitEx(GLdcConfig* config) {
|
2018-05-11 14:39:28 +00:00
|
|
|
TRACE();
|
|
|
|
|
2019-09-22 20:48:21 +00:00
|
|
|
printf("\nWelcome to GLdc! Git revision: %s\n\n", GLDC_VERSION);
|
|
|
|
|
2021-04-09 15:24:47 +00:00
|
|
|
InitGPU(config->autosort_enabled, config->fsaa_enabled);
|
2018-05-11 14:39:28 +00:00
|
|
|
|
2019-03-03 19:02:25 +00:00
|
|
|
_glInitMatrices();
|
|
|
|
_glInitAttributePointers();
|
2018-09-15 10:45:38 +00:00
|
|
|
_glInitContext();
|
|
|
|
_glInitLights();
|
2019-03-13 15:43:50 +00:00
|
|
|
_glInitImmediateMode(config->initial_immediate_capacity);
|
2019-03-03 19:02:25 +00:00
|
|
|
_glInitFramebuffers();
|
2018-05-11 14:39:28 +00:00
|
|
|
|
2019-03-13 08:51:05 +00:00
|
|
|
_glSetInternalPaletteFormat(config->internal_palette_format);
|
2019-03-11 19:07:59 +00:00
|
|
|
|
2019-03-03 19:02:25 +00:00
|
|
|
_glInitTextures();
|
2018-05-05 19:38:55 +00:00
|
|
|
|
2021-04-09 15:24:47 +00:00
|
|
|
OP_LIST.list_type = GPU_LIST_OP_POLY;
|
|
|
|
PT_LIST.list_type = GPU_LIST_PT_POLY;
|
|
|
|
TR_LIST.list_type = GPU_LIST_TR_POLY;
|
2018-05-11 14:39:28 +00:00
|
|
|
|
2019-03-25 09:44:59 +00:00
|
|
|
aligned_vector_init(&OP_LIST.vector, sizeof(Vertex));
|
|
|
|
aligned_vector_init(&PT_LIST.vector, sizeof(Vertex));
|
|
|
|
aligned_vector_init(&TR_LIST.vector, sizeof(Vertex));
|
2019-03-11 19:07:59 +00:00
|
|
|
|
2019-03-13 15:43:50 +00:00
|
|
|
aligned_vector_reserve(&OP_LIST.vector, config->initial_op_capacity);
|
|
|
|
aligned_vector_reserve(&PT_LIST.vector, config->initial_pt_capacity);
|
|
|
|
aligned_vector_reserve(&TR_LIST.vector, config->initial_tr_capacity);
|
2019-03-11 19:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void APIENTRY glKosInit() {
|
|
|
|
GLdcConfig config;
|
|
|
|
glKosInitConfig(&config);
|
|
|
|
glKosInitEx(&config);
|
2018-05-05 19:38:55 +00:00
|
|
|
}
|
|
|
|
|
2018-09-03 19:47:24 +00:00
|
|
|
|
2018-05-11 14:39:28 +00:00
|
|
|
void APIENTRY glKosSwapBuffers() {
|
2018-08-19 20:10:42 +00:00
|
|
|
static int frame_count = 0;
|
|
|
|
|
2018-05-11 14:39:28 +00:00
|
|
|
TRACE();
|
|
|
|
|
2018-08-21 08:37:19 +00:00
|
|
|
profiler_push(__func__);
|
|
|
|
|
2021-04-09 15:24:47 +00:00
|
|
|
SceneBegin();
|
|
|
|
SceneListBegin(GPU_LIST_OP_POLY);
|
|
|
|
SceneListSubmit(OP_LIST.vector.data, OP_LIST.vector.size);
|
|
|
|
SceneListFinish();
|
2018-05-05 19:38:55 +00:00
|
|
|
|
2021-04-09 15:24:47 +00:00
|
|
|
SceneListBegin(GPU_LIST_PT_POLY);
|
|
|
|
SceneListSubmit(PT_LIST.vector.data, PT_LIST.vector.size);
|
|
|
|
SceneListFinish();
|
2018-05-05 19:38:55 +00:00
|
|
|
|
2021-04-09 15:24:47 +00:00
|
|
|
SceneListBegin(GPU_LIST_TR_POLY);
|
|
|
|
SceneListSubmit(TR_LIST.vector.data, TR_LIST.vector.size);
|
|
|
|
SceneListFinish();
|
|
|
|
SceneFinish();
|
2018-05-11 14:39:28 +00:00
|
|
|
|
|
|
|
aligned_vector_clear(&OP_LIST.vector);
|
|
|
|
aligned_vector_clear(&PT_LIST.vector);
|
|
|
|
aligned_vector_clear(&TR_LIST.vector);
|
2018-08-19 20:10:42 +00:00
|
|
|
|
2018-08-21 08:37:19 +00:00
|
|
|
profiler_checkpoint("scene");
|
|
|
|
profiler_pop();
|
|
|
|
|
2018-08-19 20:10:42 +00:00
|
|
|
if(frame_count++ > 100) {
|
|
|
|
profiler_print_stats();
|
|
|
|
frame_count = 0;
|
|
|
|
}
|
2018-05-05 19:38:55 +00:00
|
|
|
}
|