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

  /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/tests/openglperf2/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);
  /packages/apps/TV/src/com/android/tv/dvr/ui/
ScheduledRecordingPresenter.java 73 long programId = recording.getProgramId();
74 if (programId == ScheduledRecording.ID_NOT_SET) {
78 context.getContentResolver(), programId) {
  /cts/tests/openglperf2/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);
  /packages/apps/TV/src/com/android/tv/dvr/
RecordingTask.java 228 long programId = mScheduledRecording.getProgramId();
229 mTvRecordingClient.startRecording(programId == ScheduledRecording.ID_NOT_SET ? null
230 : TvContract.buildProgramUri(programId));
DvrDataManagerImpl.java 243 public ScheduledRecording getScheduledRecordingForProgramId(long programId) {
245 return mProgramId2ScheduledRecordings.get(programId);
321 long programId = scheduledRecording.getProgramId();
323 && oldScheduledRecording.getProgramId() != programId
335 if (programId != ScheduledRecording.ID_NOT_SET) {
336 mProgramId2ScheduledRecordings.put(programId, scheduledRecording);
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 301 private void verifyProgram(Uri programUri, ContentValues expectedValues, long programId) {
307 assertEquals(programId, cursor.getLong(cursor.getColumnIndex(TvContract.Programs._ID)));
396 long programId = ContentUris.parseId(rowUri);
397 Uri programUri = TvContract.buildProgramUri(programId);
398 verifyProgram(programUri, values, programId);
406 verifyProgram(programUri, values, programId);
432 long programId = ContentUris.parseId(rowUri);
433 Uri programUri = TvContract.buildProgramUri(programId);
434 verifyProgram(programUri, expected, programId);
444 verifyProgram(programUri, expected, programId);
    [all...]
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 846 GLuint programId = 0;
856 programId = program.getProgram();
858 log() << TestLog::Message << "// Created and linked program " << programId
860 GLU_CHECK_CALL_ERROR(glUseProgram(programId), gl().getError());
862 log() << TestLog::Message << "// Deleted program " << programId
865 TCU_CHECK(glIsProgram(programId));
868 glGetProgramiv(programId, GL_DELETE_STATUS, &deleteFlagged);
872 errors.check(!gl().isProgram(programId),
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp 541 const deUint32 programId = ctx.createProgram(&program);
542 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
543 const GLint pointSizeLoc = ctx.getAttribLocation(programId, "a_pointSize");
544 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
550 ctx.useProgram (programId);
558 ctx.deleteProgram (programId);
680 const deUint32 programId = ctx.createProgram(&program);
681 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
682 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
688 ctx.useProgram (programId);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp 544 const deUint32 programId = ctx.createProgram(&program);
545 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
546 const GLint pointSizeLoc = ctx.getAttribLocation(programId, "a_pointSize");
547 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
553 ctx.useProgram (programId);
561 ctx.deleteProgram (programId);
683 const deUint32 programId = ctx.createProgram(&program);
684 const GLint positionLoc = ctx.getAttribLocation(programId, "a_position");
685 const GLint colorLoc = ctx.getAttribLocation(programId, "a_color");
691 ctx.useProgram (programId);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 1323 milliseconds