vk: remove geometry print stats func

This commit is contained in:
Ivan Avdeev 2022-07-09 13:09:12 -07:00 committed by Ivan Avdeev
parent 118bdd9985
commit 394587adbf
3 changed files with 0 additions and 8 deletions

View File

@ -75,11 +75,6 @@ void R_GeometryBuffer_MapClear( void ) {
R_DEBuffer_Init(&g_geom.alloc, GEOMETRY_BUFFER_STATIC_SIZE, GEOMETRY_BUFFER_DYNAMIC_SIZE);
}
void XVK_RenderBufferPrintStats( void ) {
// TODO get alignment holes size
// gEngine.Con_Reportf("Buffer usage: %uKiB of (%uKiB)\n", g_geom.alloc..head / 1024, g_geom.static_ring.size / 1024);
}
qboolean R_GeometryBuffer_Init(void) {
// TODO device memory and friends (e.g. handle mobile memory ...)

View File

@ -53,8 +53,6 @@ void R_GeometryBufferUnlock( const r_geometry_buffer_lock_t *lock );
void R_GeometryBuffer_MapClear( void ); // Free the entire buffer for a new map
void R_GeometryBufferPrintStats( void );
qboolean R_GeometryBuffer_Init(void);
void R_GeometryBuffer_Shutdown(void);

View File

@ -234,7 +234,6 @@ void R_NewMap( void ) {
// TODO should we do something like VK_BrushEndLoad?
VK_UploadLightmap();
XVK_RenderBufferPrintStats();
if (vk_core.rtx)
VK_RayMapLoadEnd();
}