OpenGL

    [Android] Android의 Graphic에 대해서

    Android의 graphic에 대해서 Main page - android_graphics_components ( https://source.android.com/devices/graphics/#android_graphics_components ) Sub Page1. OpenGL ES( https://developer.android.com/guide/topics/graphics/opengl.html#manifest )

    openGL | install opengl & sample example

    openGL | install opengl & sample example

    환경 : ubuntu 13.10 64bit install $ sudo apt-get install mesa-common-dev$ sudo apt-get install freeglut3-dev compileg++ .cpp -lGL -lGLU -lglut -o a sample code#include #include void renderfunction() { glclearcolor(0.0, 0.0, 0.0, 0.0); glclear(gl_color_buffer_bit); glcolor3f(1.0, 1.0, 1.0); glortho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0); glbegin(gl_polygon); glvertex2f(-0.5, -0.5); glvertex2f(-0.5, 0.5);..