Home
last modified time | relevance | path

Searched refs:shaderType (Results 1 – 12 of 12) sorted by relevance

/cts/tests/tests/opengl/libopengltest/
Dcommon.cpp23 GLuint loadShader(GLenum shaderType, const char* pSource) { in loadShader() argument
24 GLuint shader = glCreateShader(shaderType); in loadShader()
Dcommon.h24 GLuint loadShader(GLenum shaderType, const char* pSource);
/cts/tests/tests/graphics/src/android/opengl/cts/
DOpenGlEsVersionCtsActivity.java200 private boolean compileShaderAndAttach(int program, int shaderType, String source) { in compileShaderAndAttach() argument
201 int shader = GLES31.glCreateShader(shaderType); in compileShaderAndAttach()
203 Log.e(TAG, "Unable to create shaders of type " + shaderType); in compileShaderAndAttach()
211 Log.e(TAG, "Unable to compile shader " + shaderType + ":"); in compileShaderAndAttach()
DEglConfigGLSurfaceView.java191 private int loadShader(int shaderType, String source) { in loadShader() argument
192 int shader = GLES20.glCreateShader(shaderType); in loadShader()
199 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
DCompressedTextureSurfaceView.java367 private int loadShader(int shaderType, String source) { in loadShader() argument
368 int shader = GLES20.glCreateShader(shaderType); in loadShader()
375 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/cts/tests/tests/media/src/android/media/cts/
DTextureRender.java194 private int loadShader(int shaderType, String source) { in loadShader() argument
195 int shader = GLES20.glCreateShader(shaderType); in loadShader()
196 checkGlError("glCreateShader type=" + shaderType); in loadShader()
202 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
DEncodeVirtualDisplayWithCompositionTest.java703 private int loadShader(int shaderType, String source) throws GlException { in loadShader() argument
704 int shader = GLES20.glCreateShader(shaderType); in loadShader()
705 checkGlError("glCreateShader type=" + shaderType); in loadShader()
711 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DCtsMediaTextureRender.java198 private int loadShader(int shaderType, String source) { in loadShader() argument
199 int shader = GLES20.glCreateShader(shaderType); in loadShader()
200 checkGlError("glCreateShader type=" + shaderType); in loadShader()
206 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/cts/tests/tests/mediastress/src/android/mediastress/cts/
DSurfaceTextureRenderer.java244 private int loadShader(int shaderType, String source) { in loadShader() argument
245 int shader = GLES20.glCreateShader(shaderType); in loadShader()
252 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/cts/suite/cts/deviceTests/opengl/jni/graphics/
DGLUtils.cpp131 static GLuint loadShader(GLenum shaderType, const char** source) { in loadShader() argument
132 GLuint shader = glCreateShader(shaderType); in loadShader()
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DPlanetsRenderer.java299 private int loadShader(int shaderType, String source) { in loadShader() argument
300 int shader = GLES20.glCreateShader(shaderType); in loadShader()
307 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/cts/tests/tests/hardware/src/android/hardware/cts/
DCameraGLTest.java788 private int loadShader(int shaderType, String source) { in loadShader() argument
789 int shader = GLES20.glCreateShader(shaderType); in loadShader()
796 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()