Searched refs:interfaceBlockName (Results 1 – 4 of 4) sorted by relevance
28 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()
18 bool hasInterfaceBlock(const std::string &interfaceBlockName) const;19 unsigned int getInterfaceBlockRegister(const std::string &interfaceBlockName) const;
535 const char *interfaceBlockName, in ShGetInterfaceBlockRegister() argument538 if (!handle || !interfaceBlockName || !indexOut) in ShGetInterfaceBlockRegister()550 if (!translator->hasInterfaceBlock(interfaceBlockName)) in ShGetInterfaceBlockRegister()555 *indexOut = translator->getInterfaceBlockRegister(interfaceBlockName); in ShGetInterfaceBlockRegister()
500 const char *interfaceBlockName,