Searched refs:shaderType (Results 1 - 20 of 20) sorted by relevance

/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java95 private int loadShader(int shaderType, String source) { argument
96 int shader = GLES20.glCreateShader(shaderType);
103 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp37 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
38 GLuint shader = glCreateShader(shaderType);
52 shaderType, buf);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp37 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
38 GLuint shader = glCreateShader(shaderType);
52 shaderType, buf);
/frameworks/av/cmds/screenrecord/
H A DProgram.h78 static status_t compileShader(GLenum shaderType, const char* src,
H A DProgram.cpp137 status_t Program::compileShader(GLenum shaderType, const char* src, argument
139 GLuint shader = glCreateShader(shaderType);
151 ALOGE("Compile of shader type %d failed", shaderType);
/frameworks/native/libs/gui/tests/
H A DGLTest.h31 static void loadShader(GLenum shaderType, const char* pSource,
H A DGLTest.cpp252 void GLTest::loadShader(GLenum shaderType, const char* pSource, argument
254 GLuint shader = glCreateShader(shaderType);
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java169 private int loadShader(int shaderType, String source) { argument
170 int shader = GLES20.glCreateShader(shaderType);
177 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLDepthTestActivity.java264 private int loadShader(int shaderType, String source) { argument
265 int shader = GLES20.glCreateShader(shaderType);
272 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp76 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
77 GLuint shader = glCreateShader(shaderType);
91 shaderType, buf);
/frameworks/native/opengl/tests/gl_perf/
H A Dfill_common.cpp33 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
34 GLuint shader = glCreateShader(shaderType);
47 ALOGE("Could not compile shader %d:\n%s\n", shaderType, buf);
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java235 private int loadShader(int shaderType, String source) { argument
236 int shader = GLES20.glCreateShader(shaderType);
243 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp304 static bool compileShader(GLenum shaderType, const char* src, argument
306 GLuint shader = glCreateShader(shaderType);
361 static bool compileShaderLines(GLenum shaderType, const char* const* lines, argument
364 bool result = compileShader(shaderType, src, outShader);
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp83 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
84 GLuint shader = glCreateShader(shaderType);
98 shaderType, buf);
107 shaderType, buf);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSurfaceTextureRenderer.java202 private int loadShader(int shaderType, String source) { argument
203 int shader = GLES20.glCreateShader(shaderType);
204 checkGlError("glCreateShader type=" + shaderType);
210 Log.e(TAG, "Could not compile shader " + shaderType + ":");
214 throw new IllegalStateException("Could not compile shader " + shaderType);
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java382 private int loadShader(int shaderType, String source) { argument
383 int shader = GLES20.glCreateShader(shaderType);
390 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp76 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
77 GLuint shader = glCreateShader(shaderType);
91 shaderType, buf);
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java602 private int loadShader(int shaderType, String source) { argument
603 int shader = GLES20.glCreateShader(shaderType);
610 Log.e(TAG, "Could not compile shader " + shaderType + ":");
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java687 private static int loadShader(int shaderType, String source) { argument
688 int shader = GLES20.glCreateShader(shaderType);
698 throw new RuntimeException("Could not compile shader " + shaderType + ":" + info);
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp197 void loadShader(GLenum shaderType, const char* pSource, GLuint* outShader) { argument
198 GLuint shader = glCreateShader(shaderType);

Completed in 410 milliseconds