Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLDepthTestActivity.java264 private int loadShader(int shaderType, String source) { in loadShader() argument
265 int shader = GLES20.glCreateShader(shaderType); in loadShader()
272 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/aosp14/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java602 private int loadShader(int shaderType, String source) { in loadShader() argument
603 int shader = GLES20.glCreateShader(shaderType); in loadShader()
610 Log.e(TAG, "Could not compile shader " + shaderType + ":"); in loadShader()
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java687 private static int loadShader(int shaderType, String source) { in loadShader() argument
688 int shader = GLES20.glCreateShader(shaderType); in loadShader()
698 throw new RuntimeException("Could not compile shader " + shaderType + ":" + info); in loadShader()
/aosp14/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp749 GLuint compileShader(GLenum shaderType, const GLchar *source) { in compileShader() argument
750 GLuint shader = glCreateShader(shaderType); in compileShader()
756 SLOGE("Compile shader failed. Shader type: %d", shaderType); in compileShader()