HomeSort by relevance Sort by last modified time
    Searched refs:shaderType (Results 1 - 25 of 69) sorted by null

1 2 3

  /cts/tests/tests/opengl/libopengltest/
common.cpp 23 GLuint loadShader(GLenum shaderType, const char* pSource) {
24 GLuint shader = glCreateShader(shaderType);
common.h 24 GLuint loadShader(GLenum shaderType, const char* pSource);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShHandle.h 62 ShShaderType getShaderType() const { return shaderType; }
77 ShShaderType shaderType;
Compiler.cpp 83 : shaderType(type),
120 shaderType, shaderSpec, infoSink);
164 builtIns.initialize(shaderType, shaderSpec, resources);
166 shaderType, shaderSpec, resources, infoSink, symbolTable);
180 ValidateLimitations validate(shaderType, infoSink.info);
ValidateLimitations.h 23 ValidateLimitations(ShShaderType shaderType, TInfoSinkBase& sink);
ParseHelper.h 34 intermediate(interm), symbolTable(symt), extensionBehavior(ext), infoSink(is), shaderType(type), shaderSpec(spec), treeRoot(0),
41 ShShaderType shaderType; // vertex or fragment language (future: pack or unpack)
  /external/webkit/Source/WebCore/platform/graphics/
ANGLEWebKitBridge.h 54 bool validateShaderSource(const char* shaderSource, ANGLEShaderType shaderType, String& translatedShaderSource, String& shaderValidationLog);
ANGLEWebKitBridge.cpp 69 bool ANGLEWebKitBridge::validateShaderSource(const char* shaderSource, ANGLEShaderType shaderType, String& translatedShaderSource, String& shaderValidationLog)
84 if (shaderType == SHADER_TYPE_VERTEX)
  /development/samples/HelloEffects/src/com/example/android/mediafx/
GLToolbox.java 23 public static int loadShader(int shaderType, String source) {
24 int shader = GLES20.glCreateShader(shaderType);
35 shaderType + ":" + info);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 76 public static enum ShaderType {
99 ShaderType shaderType;
106 public ShaderSource(ShaderType type){
108 this.shaderType = type;
115 this.shaderType = ss.shaderType;
127 oc.write(shaderType, "shaderType", null);
135 shaderType = ic.readEnum("shaderType", ShaderType.class, null);
    [all...]
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.h 68 extern GLuint createShader(GLenum shaderType, const char* src);
  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
Renderer.h 34 GLuint loadShader(GLenum shaderType, const char* pSource);
Renderer.cpp 38 GLuint Renderer::loadShader(GLenum shaderType, const char* pSource) {
39 GLuint shader = glCreateShader(shaderType);
53 shaderType, buf);
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic_renderer/
Renderer.h 34 GLuint loadShader(GLenum shaderType, const char* pSource);
Renderer.cpp 38 GLuint Renderer::loadShader(GLenum shaderType, const char* pSource) {
39 GLuint shader = glCreateShader(shaderType);
53 shaderType, buf);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
Renderer.h 34 GLuint loadShader(GLenum shaderType, const char* pSource);
Renderer.cpp 38 GLuint Renderer::loadShader(GLenum shaderType, const char* pSource) {
39 GLuint shader = glCreateShader(shaderType);
53 shaderType, buf);
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Validate.h 33 static bool shaderType(GLenum type);
  /development/ndk/platforms/android-5/samples/hello-gl2/jni/
gl_code.cpp 57 GLuint loadShader(GLenum shaderType, const char* pSource) {
58 GLuint shader = glCreateShader(shaderType);
72 shaderType, buf);
  /frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
GL2JavaView.java 95 private int loadShader(int shaderType, String source) {
96 int shader = GLES20.glCreateShader(shaderType);
103 Log.e(TAG, "Could not compile shader " + shaderType + ":");
  /frameworks/native/opengl/tests/gl2_jni/jni/
gl_code.cpp 37 GLuint loadShader(GLenum shaderType, const char* pSource) {
38 GLuint shader = glCreateShader(shaderType);
52 shaderType, buf);
  /frameworks/native/opengl/tests/gldual/jni/
gl_code.cpp 37 GLuint loadShader(GLenum shaderType, const char* pSource) {
38 GLuint shader = glCreateShader(shaderType);
52 shaderType, buf);
  /cts/tests/tests/media/src/android/media/cts/
TextureRender.java 194 private int loadShader(int shaderType, String source) {
195 int shader = GLES20.glCreateShader(shaderType);
196 checkGlError("glCreateShader type=" + shaderType);
202 Log.e(TAG, "Could not compile shader " + shaderType + ":");
  /cts/tests/src/android/opengl/cts/
EglConfigGLSurfaceView.java 191 private int loadShader(int shaderType, String source) {
192 int shader = GLES20.glCreateShader(shaderType);
199 Log.e(TAG, "Could not compile shader " + shaderType + ":");
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 244 private int loadShader(int shaderType, String source) {
245 int shader = GLES20.glCreateShader(shaderType);
252 Log.e(TAG, "Could not compile shader " + shaderType + ":");

Completed in 670 milliseconds

1 2 3