-
Notifications
You must be signed in to change notification settings - Fork 0
CREnable
Kay Steinhoff edited this page Oct 8, 2024
·
1 revision
The bit of the setting that is to be toggled. To see all the available setting bits please go to the setting bits page.
#include <cr.h>
int main(void)
{
/* Initialize CR, set render destination(optional, can also be done after) */
CREnable(CR_BACKFACE_CULLING); // Disable backface culling(Enabled by default)
/* render loop and the rest of the code */
return 0;
}