OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:programInfo
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterValidatedProgram.h
63
static PassRefPtr<CustomFilterValidatedProgram> create(CustomFilterGlobalContext* globalContext, const CustomFilterProgramInfo&
programInfo
)
65
return adoptRef(new CustomFilterValidatedProgram(globalContext,
programInfo
));
70
const CustomFilterProgramInfo&
programInfo
() const { return m_programInfo; }
CustomFilterGlobalContext.cpp
89
PassRefPtr<CustomFilterValidatedProgram> CustomFilterGlobalContext::getValidatedProgram(const CustomFilterProgramInfo&
programInfo
)
91
CustomFilterValidatedProgramsMap::iterator iter = m_programs.find(
programInfo
);
95
RefPtr<CustomFilterValidatedProgram> validatedProgram = CustomFilterValidatedProgram::create(this,
programInfo
);
96
m_programs.set(
programInfo
, validatedProgram.get());
102
CustomFilterValidatedProgramsMap::iterator iter = m_programs.find(program->
programInfo
());
CustomFilterProgram.h
56
CustomFilterProgramInfo
programInfo
() const;
CustomFilterProgramInfo.h
89
static unsigned hash(const CustomFilterProgramInfo&
programInfo
) { return
programInfo
.hash(); }
CustomFilterProgram.cpp
81
CustomFilterProgramInfo CustomFilterProgram::
programInfo
() const
CustomFilterValidatedProgram.cpp
158
CustomFilterValidatedProgram::CustomFilterValidatedProgram(CustomFilterGlobalContext* globalContext, const CustomFilterProgramInfo&
programInfo
)
160
, m_programInfo(
programInfo
)
165
String originalVertexShader =
programInfo
.vertexShaderString();
169
String originalFragmentShader =
programInfo
.fragmentShaderString();
174
bool blendsElementTexture = (
programInfo
.programType() == PROGRAM_TYPE_BLENDS_ELEMENT_TEXTURE);
FECustomFilter.cpp
62
m_customFilterRenderer = CustomFilterRenderer::create(m_context, m_validatedProgram->
programInfo
().programType(), parameters, meshRows, meshColumns, meshType);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleCustomFilterProgramCache.cpp
58
StyleCustomFilterProgram* StyleCustomFilterProgramCache::lookup(const CustomFilterProgramInfo&
programInfo
) const
60
CacheMap::const_iterator iter = m_cache.find(
programInfo
);
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp
399
ProgramData*
programInfo
= new ProgramData();
402
ctx->shareGroup()->setObjectData(SHADER,localProgramName,ObjectDataPtr(
programInfo
));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp
[
all
...]
Completed in 592 milliseconds