OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AttribLocationBinding
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/opengl/
gluShaderProgram.hpp
221
struct
AttribLocationBinding
226
AttribLocationBinding
(void) : location(0) {}
227
AttribLocationBinding
(const std::string& name_, deUint32 location_) : name(name_), location(location_) {}
302
std::vector<
AttribLocationBinding
> attribLocationBindings;
310
ProgramSources& operator<< (const
AttribLocationBinding
& binding) { attribLocationBindings.push_back(binding); return *this; }
gluShaderProgram.cpp
350
for (std::vector<
AttribLocationBinding
>::const_iterator binding = sources.attribLocationBindings.begin(); binding != sources.attribLocationBindings.end(); ++binding)
Completed in 1508 milliseconds