HomeSort by relevance Sort by last modified time
    Searched refs:programId (Results 1 - 19 of 19) sorted by null

  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Program.cpp 17 Program::Program(GLuint programId) :
18 mProgramId(programId) {
PerspectiveProgram.cpp 21 PerspectiveProgram::PerspectiveProgram(GLuint programId) :
22 Program(programId) {
27 mMVMatrixHandle = glGetUniformLocation(programId, "u_MVMatrix");
28 mMVPMatrixHandle = glGetUniformLocation(programId, "u_MVPMatrix");
29 mLightPosHandle = glGetUniformLocation(programId, "u_LightPos");
Program.h 23 Program(GLuint programId);
PerspectiveProgram.h 26 PerspectiveProgram(GLuint programId);
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.cpp 32 GLuint programId = glCreateProgram();
33 glAttachShader(programId, vertexId);
34 glAttachShader(programId, fragmentId);
35 glBindAttribLocation(programId, position, "position");
36 glBindAttribLocation(programId, texCoords, "texCoords");
37 glLinkProgram(programId);
40 glGetProgramiv(programId, GL_LINK_STATUS, &status);
44 glGetProgramiv(programId, GL_INFO_LOG_LENGTH, &infoLen);
47 glGetProgramInfoLog(programId, infoLen, 0, &log[0]);
50 glDetachShader(programId, vertexId)
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
FlockingScene.cpp 48 GLuint programId = GLUtils::createProgram(&vertex, &fragment);
51 if (programId == 0) {
54 mMainProgram = new PerspectiveProgram(programId);
61 programId = GLUtils::createProgram(&vertex, &fragment);
64 if (programId == 0) {
67 mWaterProgram = new PerspectiveProgram(programId);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
GlowingScene.cpp 53 GLuint programId = GLUtils::createProgram(&vertex, &fragment);
56 if (programId == 0) {
59 mMainProgram = new PerspectiveProgram(programId);
66 programId = GLUtils::createProgram(&vertex, &fragment);
69 if (programId == 0) {
72 mBlurProgram = new Program(programId);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLShaderBuilder.cpp 724 GrGLuint programId,
776 GR_GL_CALL(gli, AttachShader(programId, shaderId));
781 bool GrGLShaderBuilder::compileAndAttachShaders(GrGLuint programId, SkTDArray<GrGLuint>* shaderIds) const {
    [all...]
GrGLShaderBuilder.h 265 virtual bool compileAndAttachShaders(GrGLuint programId, SkTDArray<GrGLuint>* shaderIds) const;
267 virtual void bindProgramLocations(GrGLuint programId) const;
474 virtual bool compileAndAttachShaders(GrGLuint programId,
477 virtual void bindProgramLocations(GrGLuint programId) const SK_OVERRIDE;
  /external/skia/src/gpu/gl/
GrGLShaderBuilder.cpp 724 GrGLuint programId,
776 GR_GL_CALL(gli, AttachShader(programId, shaderId));
781 bool GrGLShaderBuilder::compileAndAttachShaders(GrGLuint programId, SkTDArray<GrGLuint>* shaderIds) const {
    [all...]
GrGLShaderBuilder.h 265 virtual bool compileAndAttachShaders(GrGLuint programId, SkTDArray<GrGLuint>* shaderIds) const;
267 virtual void bindProgramLocations(GrGLuint programId) const;
474 virtual bool compileAndAttachShaders(GrGLuint programId,
477 virtual void bindProgramLocations(GrGLuint programId) const SK_OVERRIDE;
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 237 private void verifyProgram(Uri programUri, ContentValues expectedValues, long programId) {
243 assertEquals(programId, cursor.getLong(cursor.getColumnIndex(TvContract.Programs._ID)));
314 long programId = ContentUris.parseId(rowUri);
315 Uri programUri = TvContract.buildProgramUri(programId);
316 verifyProgram(programUri, values, programId);
324 verifyProgram(programUri, values, programId);
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 843 GLuint programId = 0;
853 programId = program.getProgram();
855 log() << TestLog::Message << "// Created and linked program " << programId
857 GLU_CHECK_CALL_ERROR(glUseProgram(programId), gl().getError());
859 log() << TestLog::Message << "// Deleted program " << programId
862 TCU_CHECK(glIsProgram(programId));
865 glGetProgramiv(programId, GL_DELETE_STATUS, &deleteFlagged);
869 errors.check(!gl().isProgram(programId),
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp 542 const deUint32 programId = ctx.createProgram(&program);
543 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
544 const GLint pointSizeLoc = ctx.getAttribLocation(programId, "a_pointSize");
545 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
551 ctx.useProgram (programId);
559 ctx.deleteProgram (programId);
679 const deUint32 programId = ctx.createProgram(&program);
680 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
681 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
687 ctx.useProgram (programId);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp 545 const deUint32 programId = ctx.createProgram(&program);
546 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
547 const GLint pointSizeLoc = ctx.getAttribLocation(programId, "a_pointSize");
548 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
554 ctx.useProgram (programId);
562 ctx.deleteProgram (programId);
682 const deUint32 programId = ctx.createProgram(&program);
683 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
684 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
690 ctx.useProgram (programId);
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvContract.java 211 * @param programId The ID of the program to point to.
213 public static final Uri buildProgramUri(long programId) {
214 return ContentUris.withAppendedId(Programs.CONTENT_URI, programId);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 1438 milliseconds