Searched defs:shaderType (Results 1 - 5 of 5) sorted by relevance

/development/samples/HelloEffects/src/com/example/android/mediafx/
H A DGLToolbox.java23 public static int loadShader(int shaderType, String source) { argument
24 int shader = GLES20.glCreateShader(shaderType);
35 shaderType + ":" + info);
/development/ndk/platforms/android-5/samples/hello-gl2/jni/
H A Dgl_code.cpp57 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
58 GLuint shader = glCreateShader(shaderType);
72 shaderType, buf);
/development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
H A DGLES20TriangleRenderer.java155 private int loadShader(int shaderType, String source) { argument
156 int shader = GLES20.glCreateShader(shaderType);
163 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java223 private int loadShader(int shaderType, String source) { argument
224 int shader = GLES20.glCreateShader(shaderType);
231 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DGLES20TriangleRenderer.java157 private int loadShader(int shaderType, String source) { argument
158 int shader = GLES20.glCreateShader(shaderType);
165 Log.e(TAG, "Could not compile shader " + shaderType + ":");

Completed in 47 milliseconds