TINYGL: Janitorial

This commit is contained in:
Paweł Kołodziejski 2021-12-15 23:55:36 +01:00
parent c98fe1c61c
commit b673e0adf5
No known key found for this signature in database
GPG key ID: 0BDADC9E74440FF7
16 changed files with 138 additions and 131 deletions

View file

@ -698,7 +698,7 @@ void tglInitNames() {
c->gl_add_op(p);
}
void tglPushName(unsigned int name) {
void tglPushName(uint name) {
TinyGL::GLContext *c = TinyGL::gl_get_context();
TinyGL::GLParam p[2];
@ -717,7 +717,7 @@ void tglPopName() {
c->gl_add_op(p);
}
void tglLoadName(unsigned int name) {
void tglLoadName(uint name) {
TinyGL::GLContext *c = TinyGL::gl_get_context();
TinyGL::GLParam p[2];
@ -740,7 +740,7 @@ void tglPolygonOffset(TGLfloat factor, TGLfloat units) {
// Special Functions
void tglCallList(unsigned int list) {
void tglCallList(uint list) {
TinyGL::GLContext *c = TinyGL::gl_get_context();
TinyGL::GLParam p[2];