mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-03 09:49:40 +00:00
Enable microcode caching for Ogre 1.9+
This commit is contained in:
parent
530d06ab54
commit
4bc4af6bf0
1 changed files with 14 additions and 6 deletions
20
extern/shiny/Platforms/Ogre/OgrePlatform.cpp
vendored
20
extern/shiny/Platforms/Ogre/OgrePlatform.cpp
vendored
|
@ -64,8 +64,11 @@ namespace sh
|
|||
|
||||
bool OgrePlatform::supportsShaderSerialization ()
|
||||
{
|
||||
// Not very reliable in OpenGL mode (requires extension), and somehow doesn't work on linux even if the extension is present
|
||||
#if OGRE_VERSION >= (1 << 16 | 9 << 8 | 0)
|
||||
return true;
|
||||
#else
|
||||
return Ogre::Root::getSingleton ().getRenderSystem ()->getName ().find("OpenGL") == std::string::npos;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool OgrePlatform::supportsMaterialQueuedListener ()
|
||||
|
@ -110,10 +113,15 @@ namespace sh
|
|||
|
||||
void OgrePlatform::serializeShaders (const std::string& file)
|
||||
{
|
||||
std::fstream output;
|
||||
output.open(file.c_str(), std::ios::out | std::ios::binary);
|
||||
Ogre::DataStreamPtr shaderCache (OGRE_NEW Ogre::FileStreamDataStream(file, &output, false));
|
||||
Ogre::GpuProgramManager::getSingleton().saveMicrocodeCache(shaderCache);
|
||||
#if OGRE_VERSION >= (1 << 16 | 9 << 8 | 0)
|
||||
if (Ogre::GpuProgramManager::getSingleton().isCacheDirty())
|
||||
#endif
|
||||
{
|
||||
std::fstream output;
|
||||
output.open(file.c_str(), std::ios::out | std::ios::binary);
|
||||
Ogre::DataStreamPtr shaderCache (OGRE_NEW Ogre::FileStreamDataStream(file, &output, false));
|
||||
Ogre::GpuProgramManager::getSingleton().saveMicrocodeCache(shaderCache);
|
||||
}
|
||||
}
|
||||
|
||||
void OgrePlatform::deserializeShaders (const std::string& file)
|
||||
|
@ -143,7 +151,7 @@ namespace sh
|
|||
else if (typeid(*value) == typeid(IntValue))
|
||||
type = Ogre::GCT_INT1;
|
||||
else
|
||||
assert(0);
|
||||
throw std::runtime_error("unexpected type");
|
||||
params->addConstantDefinition(name, type);
|
||||
mSharedParameters[name] = params;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue