Home
last modified time | relevance | path

Searched refs:hashStream (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/
DMemoryProgramCache.cpp107 HashStream hashStream; in ComputeHash() local
110 hashStream << program->getAttachedShader(shaderType); in ComputeHash()
114 hashStream << ANGLE_COMMIT_HASH << context->getClientMajorVersion() in ComputeHash()
118 hashStream << program->getAttributeBindings() << program->getUniformLocationBindings() in ComputeHash()
126 const std::string &programKey = hashStream.str(); in ComputeHash()
/external/angle/src/libANGLE/renderer/vulkan/
DRendererVk.cpp1707 std::ostringstream hashStream("ANGLE Pipeline Cache: ", std::ios_base::ate); in initPipelineCacheVkKey() local
1713 hashStream << std::hex << c; in initPipelineCacheVkKey()
1716 hashStream << std::hex << mPhysicalDeviceProperties.vendorID; in initPipelineCacheVkKey()
1717 hashStream << std::hex << mPhysicalDeviceProperties.deviceID; in initPipelineCacheVkKey()
1719 const std::string &hashString = hashStream.str(); in initPipelineCacheVkKey()