pTitSeb's glshim renamed to gl4es

This commit is contained in:
lubomyr
2016-11-06 15:18:18 +02:00
parent 21867b6ddc
commit b4cadd5955
146 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include "../proxy/gl.h"
int main() {
glXSwapBuffers(0, 0);
glColor4f(1, 2, 3, 4);
glBegin(GL_QUADS);
glVertex2f(1, 2);
glEnd();
}