/external/skia/src/gpu/gl/builders/ |
GrGLProgramBuilder.cpp | 81 GrGLuint programId, 88 programId, 110 GrGLuint programId, 125 programId, 136 GrGLuint programID; 137 GL_CALL_RET(programID, CreateProgram()); 138 if (0 == programID) { 145 GL_CALL(ProgramParameteri(programID, GR_GL_PROGRAM_BINARY_RETRIEVABLE_HINT, GR_GL_TRUE)); 162 this->bindProgramResourceLocations(programID); 173 ProgramBinary(programID, binaryFormat, (void*) (bytes + offset) [all...] |
GrGLProgramBuilder.h | 52 GrGLuint programId, 59 GrGLuint programId, 65 void bindProgramResourceLocations(GrGLuint programID); 66 bool checkLinkStatus(GrGLuint programID); 67 void resolveProgramResourceLocations(GrGLuint programID); 68 void cleanupProgram(GrGLuint programID, const SkTDArray<GrGLuint>& shaderIDs); 72 GrGLProgram* createProgram(GrGLuint programID);
|
GrGLShaderStringBuilder.h | 23 GrGLuint programId,
|
/external/skqp/src/gpu/gl/builders/ |
GrGLProgramBuilder.cpp | 81 GrGLuint programId, 88 programId, 110 GrGLuint programId, 125 programId, 136 GrGLuint programID; 137 GL_CALL_RET(programID, CreateProgram()); 138 if (0 == programID) { 145 GL_CALL(ProgramParameteri(programID, GR_GL_PROGRAM_BINARY_RETRIEVABLE_HINT, GR_GL_TRUE)); 161 this->bindProgramResourceLocations(programID); 173 GL_CALL(ProgramBinary(programID, binaryFormat, (void*) (bytes + offset) [all...] |
GrGLProgramBuilder.h | 52 GrGLuint programId, 59 GrGLuint programId, 65 void bindProgramResourceLocations(GrGLuint programID); 66 bool checkLinkStatus(GrGLuint programID); 67 void resolveProgramResourceLocations(GrGLuint programID); 68 void cleanupProgram(GrGLuint programID, const SkTDArray<GrGLuint>& shaderIDs); 72 GrGLProgram* createProgram(GrGLuint programID);
|
GrGLShaderStringBuilder.h | 23 GrGLuint programId,
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Program.cpp | 33 GLuint programId = glCreateProgram(); 34 glAttachShader(programId, vertexId); 35 glAttachShader(programId, fragmentId); 36 glBindAttribLocation(programId, position, "position"); 37 glBindAttribLocation(programId, texCoords, "texCoords"); 38 glLinkProgram(programId); 41 glGetProgramiv(programId, GL_LINK_STATUS, &status); 45 glGetProgramiv(programId, GL_INFO_LOG_LENGTH, &infoLen); 48 glGetProgramInfoLog(programId, infoLen, 0, &log[0]); 51 glDetachShader(programId, vertexId) [all...] |
/cts/tests/openglperf2/jni/graphics/ |
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.cpp | 17 Program::Program(GLuint programId) : 18 mProgramId(programId) {
|
Program.h | 23 explicit Program(GLuint programId);
|
/developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/model/ |
Movie.java | 33 private long programId; 39 return programId; 42 public void setProgramId(long programId) { 43 this.programId = programId; 123 + ", programId='" 124 + programId
|
/external/deqp/modules/gles2/functional/ |
es2fShaderStructTests.cpp | 61 typedef void (*SetupUniformsFunc) (const glw::Functions& gl, deUint32 programID, const tcu::Vec4& constCoords); 72 virtual void setupUniforms (int programID, const tcu::Vec4& constCoords); 144 void ShaderStructCase::setupUniforms (int programID, const tcu::Vec4& constCoords) 146 ShaderRenderCase::setupUniforms(programID, constCoords); 148 m_setupUniforms(m_renderCtx.getFunctions(), programID, constCoords); 1172 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const tcu::VECTYPE& vec) \ 1174 int loc = gl.getUniformLocation(programID, name); \ [all...] |
/external/deqp/modules/gles3/functional/ |
es3fShaderStructTests.cpp | 54 typedef void (*SetupUniformsFunc) (const glw::Functions& gl, deUint32 programID, const tcu::Vec4& constCoords); 65 virtual void setupUniforms (int programID, const tcu::Vec4& constCoords); 111 void ShaderStructCase::setupUniforms (int programID, const tcu::Vec4& constCoords) 113 ShaderRenderCase::setupUniforms(programID, constCoords); 115 m_setupUniforms(m_renderCtx.getFunctions(), programID, constCoords); 1179 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const tcu::VECTYPE& vec) \ 1181 int loc = gl.getUniformLocation(programID, name); \ 1188 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const tcu::VECTYPE* vec, int arraySize) \ 1190 int loc = gl.getUniformLocation(programID, name); \ [all...] |
/external/deqp/external/openglcts/modules/common/ |
glcShaderStructTests.cpp | 49 typedef void (*SetupUniformsFunc)(const glw::Functions& gl, deUint32 programID, const tcu::Vec4& constCoords); 62 virtual void setupUniforms(deUint32 programID, const tcu::Vec4& constCoords); 119 void ShaderStructCase::setupUniforms(deUint32 programID, const tcu::Vec4& constCoords) 121 ShaderRenderCase::setupUniforms(programID, constCoords); 123 m_setupUniforms(m_renderCtx.getFunctions(), programID, constCoords); [all...] |
/frameworks/base/libs/hwui/ |
Program.h | 101 typedef uint64_t programid; typedef in namespace:android::uirenderer 243 programid key() const { 244 programid key = 0; 259 key |= programid(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT; 276 key |= programid(swapSrcDst) << PROGRAM_KEY_SWAP_SRC_DST_SHIFT; 277 key |= programid(modulate) << PROGRAM_MODULATE_SHIFT; 278 key |= programid(hasVertexAlpha) << PROGRAM_HAS_VERTEX_ALPHA_SHIFT; 279 key |= programid(useShadowAlphaInterp) << PROGRAM_USE_SHADOW_ALPHA_INTERP_SHIFT; 280 key |= programid(hasExternalTexture) << PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT; 281 key |= programid(hasTextureTransform) << PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT [all...] |
ProgramCache.h | 51 Program* generateProgram(const ProgramDescription& description, programid key); 59 std::map<programid, std::unique_ptr<Program>> mCache;
|
/external/skia/src/gpu/gl/ |
GrGLUniformHandler.cpp | 130 void GrGLUniformHandler::bindUniformLocations(GrGLuint programID, const GrGLCaps& caps) { 134 GL_CALL(BindUniformLocation(programID, currUniform, fUniforms[i].fVariable.c_str())); 138 GL_CALL(BindUniformLocation(programID, currUniform, fSamplers[i].fVariable.c_str())); 142 GL_CALL(BindUniformLocation(programID, currUniform, 149 void GrGLUniformHandler::getUniformLocations(GrGLuint programID, const GrGLCaps& caps) { 154 GL_CALL_RET(location, GetUniformLocation(programID, fUniforms[i].fVariable.c_str())); 159 GL_CALL_RET(location, GetUniformLocation(programID, fSamplers[i].fVariable.c_str())); 164 GL_CALL_RET(location, GetUniformLocation(programID,
|
GrGLUniformHandler.h | 64 void bindUniformLocations(GrGLuint programID, const GrGLCaps& caps); 67 void getUniformLocations(GrGLuint programID, const GrGLCaps& caps);
|
/external/skqp/src/gpu/gl/ |
GrGLUniformHandler.cpp | 130 void GrGLUniformHandler::bindUniformLocations(GrGLuint programID, const GrGLCaps& caps) { 134 GL_CALL(BindUniformLocation(programID, currUniform, fUniforms[i].fVariable.c_str())); 138 GL_CALL(BindUniformLocation(programID, currUniform, fSamplers[i].fVariable.c_str())); 142 GL_CALL(BindUniformLocation(programID, currUniform, 149 void GrGLUniformHandler::getUniformLocations(GrGLuint programID, const GrGLCaps& caps) { 154 GL_CALL_RET(location, GetUniformLocation(programID, fUniforms[i].fVariable.c_str())); 159 GL_CALL_RET(location, GetUniformLocation(programID, fSamplers[i].fVariable.c_str())); 164 GL_CALL_RET(location, GetUniformLocation(programID,
|
GrGLUniformHandler.h | 64 void bindUniformLocations(GrGLuint programID, const GrGLCaps& caps); 67 void getUniformLocations(GrGLuint programID, const GrGLCaps& caps);
|
/packages/apps/TV/src/com/android/tv/dvr/provider/ |
DvrDbSync.java | 90 "onProgramUpdated: programId=" + ContentUris.parseId(uri)); 225 private void onProgramUpdated(long programId) { 226 addProgramIdToCheckIfNeeded(mDataManager.getScheduledRecordingForProgramId(programId)); 234 long programId = schedule.getProgramId(); 235 if (programId != ScheduledRecording.ID_NOT_SET 236 && !mProgramIdQueue.contains(programId) 239 if (DEBUG) Log.d(TAG, "Program ID enqueued: " + programId); 240 mProgramIdQueue.offer(programId); 264 void handleUpdateProgram(Program program, long programId) { 266 ScheduledRecording schedule = mDataManager.getScheduledRecordingForProgramId(programId); [all...] |
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/ |
PreviewChannelHelper.java | 369 long programId = ContentUris.parseId(programUri); 370 return programId; 381 public PreviewProgram getPreviewProgram(long programId) { 383 Uri programUri = TvContractCompat.buildPreviewProgramUri(programId); 394 public void updatePreviewProgram(long programId, @NonNull PreviewProgram update) { 397 PreviewProgram curr = getPreviewProgram(programId); 399 updatePreviewProgramInternal(programId, update); 410 void updatePreviewProgramInternal(long programId, @NonNull PreviewProgram upgrade) { 412 TvContractCompat.buildPreviewProgramUri(programId), 419 public void deletePreviewProgram(long programId) { [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);
|
/frameworks/support/tv-provider/src/androidTest/java/androidx/tvprovider/media/tv/ |
PreviewChannelHelperTest.java | 454 long programId = helper.publishPreviewProgram(program); 455 PreviewProgram programFromProvider = helper.getPreviewProgram(programId); 468 long programId = helper.publishPreviewProgram(programBuilder.build()); 472 helper.updatePreviewProgram(programId, programBuilder.build()); 473 PreviewProgram programFromProvider = helper.getPreviewProgram(programId); 489 public void updatePreviewProgramInternal(long programId, PreviewProgram upgrade) { 496 long programId = helper.publishPreviewProgram(programBuilder.build()); 497 PreviewProgram programFromProvider = helper.getPreviewProgram(programId); 499 helper.updatePreviewProgram(programId, programBuilder.build()); 502 helper.updatePreviewProgram(programId, programBuilder.build()) [all...] |