Deprecate InitializeDll functions

These were only used for TThreadPool, which now uses `thread_local`.
This commit is contained in:
Ben Clayton 2020-07-14 18:34:45 +01:00 committed by arcady-lunarg
parent 775864ef74
commit a0010e27ba
2 changed files with 4 additions and 132 deletions

View file

@ -38,10 +38,10 @@
namespace glslang {
bool InitProcess();
bool InitThread();
bool DetachThread(); // not called from standalone, perhaps other tools rely on parts of it
bool DetachProcess(); // not called from standalone, perhaps other tools rely on parts of it
inline bool InitProcess() { return true; } // DEPRECATED
inline bool InitThread() { return true; } // DEPRECATED
inline bool DetachThread() { return true; } // DEPRECATED
inline bool DetachProcess() { return true; } // DEPRECATED
} // end namespace glslang