Example usage for Java android.opengl GLUtils fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getEGLErrorString(int error) Return a string for the EGL error code, or the hex representation if the error is unknown. |
void | texImage2D(int target, int level, Bitmap bitmap, int border) A version of texImage2D that determines the internalFormat and type automatically. |
void | texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) A version of texImage2D() that takes an explicit type parameter as defined by the OpenGL ES specification. |
void | texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) Calls glTexSubImage2D() on the current OpenGL context. |
void | texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) A version of texSubImage2D() that takes an explicit type parameter as defined by the OpenGL ES specification. |