GLdc/GL/state.h
Luke Benstead 8743b0a5b9 Add tests
2026-04-20 22:23:31 +01:00

25 lines
418 B
C

#pragma once
#include "../include/GL/gl.h"
#ifdef __cplusplus
extern "C" {
#endif
GLboolean _glNearZClippingEnabled();
GLboolean _glGPUStateIsDirty();
void _glGPUStateMarkClean();
void _glGPUStateMarkDirty();
float* _glCurrentColor();
float* _glCurrentNormal();
float* _glCurrentTexCoord0();
float* _glCurrentTexCoord1();
GLfloat _glGetHalfPointSize();
GLfloat _glGetHalfLineWidth();
#ifdef __cplusplus
}
#endif