![]() |
OpenGL ES SDK for Android
ARM Developer Center
|
#include <GLES2/gl2.h>Go to the source code of this file.
Functions | |
| void | loadTexture (const char *texture, unsigned int level, unsigned int width, unsigned int height) |
| Loads a desired texture into memory at an appropriate mipmap level. More... | |
| void | loadCompressedTexture (const char *texture, unsigned int level) |
| Loads a compressed texture into memory at an appropriate mipmap level. More... | |
Loads a compressed texture into memory at an appropriate mipmap level.
| texture | The name of the texture file to be loeaded from the system. |
| level | The mipmap level that the texture should be loaded into. |
Definition at line 62 of file Texture.cpp.
| void loadTexture | ( | const char * | texture, |
| unsigned int | level, | ||
| unsigned int | width, | ||
| unsigned int | height | ||
| ) |
Loads a desired texture into memory at an appropriate mipmap level.
| texture | The name of the texture file to be loaded from the system. |
| level | The mipmap level that the texture should be loaded into. |
| width | The width of the texture to be loaded |
| height | The height of the texture to be loaded. |
Definition at line 35 of file Texture.cpp.