Searched refs:programInfo (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
H A DCustomFilterGlobalContext.cpp88 PassRefPtr<CustomFilterValidatedProgram> CustomFilterGlobalContext::getValidatedProgram(const CustomFilterProgramInfo& programInfo) argument
90 CustomFilterValidatedProgramsMap::iterator iter = m_programs.find(programInfo);
94 RefPtr<CustomFilterValidatedProgram> validatedProgram = CustomFilterValidatedProgram::create(this, programInfo);
95 m_programs.set(programInfo, validatedProgram.get());
101 CustomFilterValidatedProgramsMap::iterator iter = m_programs.find(program->programInfo());
H A DCustomFilterValidatedProgram.h63 static PassRefPtr<CustomFilterValidatedProgram> create(CustomFilterGlobalContext* globalContext, const CustomFilterProgramInfo& programInfo) argument
65 return adoptRef(new CustomFilterValidatedProgram(globalContext, programInfo));
70 const CustomFilterProgramInfo& programInfo() const { return m_programInfo; } function in class:WebCore::CustomFilterValidatedProgram
H A DCustomFilterProgramInfo.h89 static unsigned hash(const CustomFilterProgramInfo& programInfo) { return programInfo.hash(); } argument
H A DCustomFilterProgram.cpp79 CustomFilterProgramInfo CustomFilterProgram::programInfo() const function in class:WebCore::CustomFilterProgram
H A DCustomFilterProgram.h56 CustomFilterProgramInfo programInfo() const;
H A DCustomFilterValidatedProgram.cpp156 CustomFilterValidatedProgram::CustomFilterValidatedProgram(CustomFilterGlobalContext* globalContext, const CustomFilterProgramInfo& programInfo) argument
158 , m_programInfo(programInfo)
163 String originalVertexShader = programInfo.vertexShaderString();
167 String originalFragmentShader = programInfo.fragmentShaderString();
172 bool blendsElementTexture = (programInfo.programType() == ProgramTypeBlendsElementTexture);
H A DFECustomFilter.cpp59 m_customFilterRenderer = CustomFilterRenderer::create(m_context, m_validatedProgram->programInfo().programType(), parameters, meshRows, meshColumns, meshType);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleCustomFilterProgramCache.cpp57 StyleCustomFilterProgram* StyleCustomFilterProgramCache::lookup(const CustomFilterProgramInfo& programInfo) const
59 CacheMap::const_iterator iter = m_cache.find(programInfo);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayer.cpp4090 RefPtr<CustomFilterValidatedProgram> validatedProgram = globalContext->getValidatedProgram(program->programInfo());

Completed in 342 milliseconds