Delete empty method

This commit is contained in:
Chris Sarbora
2024-07-01 01:49:29 -05:00
parent 8d26df7b25
commit fb2dbe8c92
6 changed files with 2 additions and 24 deletions

View File

@@ -127,15 +127,6 @@ void rend_SetFiltering(int8_t state) {
gpu_state.cur_bilinear_state = state;
}
// Sets the near and far planes for z buffer
void rend_SetZValues(float nearz, float farz) {
// mprintf(0,"OPENGL:Setting depth range to %f - %f\n",nearz,farz);
// JEFF: glDepthRange must take parameters [0,1]
// It is set in init
//@@dglDepthRange (0,farz);
}
// Sets a bitmap as a overlay map to rendered on top of the next texture map
// a -1 value indicates no overlay map
void rend_SetOverlayMap(int handle) { gpu_Overlay_map = handle; }