Skip to content

CRClearDepthBuffer

Kay Steinhoff edited this page Oct 7, 2024 · 1 revision

void CRClearDepthBuffer(void)

Parameters


Example

#include <cr.h>

int main(void)
{
    while(windowOpen)
    {
        CRClearDepthBuffer(); // Needs to be called before or after the scene gets/was rendered
    }
    return 0;
}

Clone this wiki locally