Java android.opengl GLUtils fields, constructors, methods, implement or subclass

Example usage for Java android.opengl GLUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.opengl GLUtils.

The text is from its open source code.

Method

StringgetEGLErrorString(int error)
Return a string for the EGL error code, or the hex representation if the error is unknown.
voidtexImage2D(int target, int level, Bitmap bitmap, int border)
A version of texImage2D that determines the internalFormat and type automatically.
voidtexImage2D(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.
voidtexSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap)
Calls glTexSubImage2D() on the current OpenGL context.
voidtexSubImage2D(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.