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

1 2

  /cts/tests/openglperf2/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...]
  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.h 17 GrGLuint programId,
GrGLShaderStringBuilder.cpp 21 GrGLuint programId,
92 GR_GL_CALL(gli, AttachShader(programId, shaderId));
GrGLProgramBuilder.h 46 GrGLuint programId,
50 void bindProgramResourceLocations(GrGLuint programID);
51 bool checkLinkStatus(GrGLuint programID);
52 void resolveProgramResourceLocations(GrGLuint programID);
53 void cleanupProgram(GrGLuint programID, const SkTDArray<GrGLuint>& shaderIDs);
57 GrGLProgram* createProgram(GrGLuint programID);
GrGLProgramBuilder.cpp 105 GrGLuint programId,
110 programId,
128 GrGLuint programID;
129 GL_CALL_RET(programID, CreateProgram());
130 if (0 == programID) {
139 if (!this->compileAndAttachShaders(fVS, programID, GR_GL_VERTEX_SHADER, &shadersToDelete)) {
140 this->cleanupProgram(programID, shadersToDelete);
151 GL_CALL(BindAttribLocation(programID, i, primProc.getAttrib(i).fName));
155 if (!this->compileAndAttachShaders(fFS, programID, GR_GL_FRAGMENT_SHADER, &shadersToDelete)) {
156 this->cleanupProgram(programID, shadersToDelete)
    [all...]
  /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);
  /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/
DvrDataManager.java 108 * Returns the scheduled recording program with the given programId or null if is not found.
111 ScheduledRecording getScheduledRecordingForProgramId(long 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);
ScheduledRecording.java 119 public Builder setProgramId(long programId) {
120 mProgramId = programId;
260 private ScheduledRecording(long id, long priority, long channelId, long programId,
266 mProgramId = programId;
RecordingTask.java 228 long programId = mScheduledRecording.getProgramId();
229 mTvRecordingClient.startRecording(programId == ScheduledRecording.ID_NOT_SET ? null
230 : TvContract.buildProgramUri(programId));
DvrDataManagerInMemoryImpl.java 189 public ScheduledRecording getScheduledRecordingForProgramId(long programId) {
191 if (r.getProgramId() == 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/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...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/data/
PsipData.java 522 public EitItem(long programId, int eventId, String titleText, long startTime,
526 mProgramId = programId;
669 return String.format("EitItem programId: %d, eventId: %d, title: %s, startTime: %10d"
  /frameworks/base/media/java/android/media/tv/
TvContract.java 223 * @param programId The ID of the program to point to.
225 public static final Uri buildProgramUri(long programId) {
226 return ContentUris.withAppendedId(Programs.CONTENT_URI, programId);
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 632 public QueryProgramTask(ContentResolver contentResolver, long programId) {
633 super(contentResolver, TvContract.buildProgramUri(programId), Program.PROJECTION, null,
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]

Completed in 1039 milliseconds

1 2