Trying to Draw a 2D Triangle in OpenGL ES 2.0
- by Nathan Campos
I'm trying to convert a code from OpenGL to OpenGL ES 2.0 (for the BlackBerry PlayBook). So far what I got is this (just the part of the code that should draw the triangle):
void setupScene() {
glClearColor(250, 250, 250, 1);
glViewport(0, 0, 600, 1024);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
}
void drawScene() {
…