Home
last modified time | relevance | path

Searched refs:interfaceBlockName (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
DTranslatorHLSL.cpp28 bool TranslatorHLSL::hasInterfaceBlock(const std::string &interfaceBlockName) const in hasInterfaceBlock()
30 return (mInterfaceBlockRegisterMap.count(interfaceBlockName) > 0); in hasInterfaceBlock()
33 unsigned int TranslatorHLSL::getInterfaceBlockRegister(const std::string &interfaceBlockName) const in getInterfaceBlockRegister()
35 ASSERT(hasInterfaceBlock(interfaceBlockName)); in getInterfaceBlockRegister()
36 return mInterfaceBlockRegisterMap.find(interfaceBlockName)->second; in getInterfaceBlockRegister()
DTranslatorHLSL.h18 bool hasInterfaceBlock(const std::string &interfaceBlockName) const;
19 unsigned int getInterfaceBlockRegister(const std::string &interfaceBlockName) const;
DShaderLang.cpp535 const char *interfaceBlockName, in ShGetInterfaceBlockRegister() argument
538 if (!handle || !interfaceBlockName || !indexOut) in ShGetInterfaceBlockRegister()
550 if (!translator->hasInterfaceBlock(interfaceBlockName)) in ShGetInterfaceBlockRegister()
555 *indexOut = translator->getInterfaceBlockRegister(interfaceBlockName); in ShGetInterfaceBlockRegister()
/external/chromium_org/third_party/angle/include/GLSLANG/
DShaderLang.h500 const char *interfaceBlockName,