summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp')
-rw-r--r--src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp b/src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp
deleted file mode 100644
index 43c215f52b..0000000000
--- a/src/3rdparty/angle/src/compiler/translator/InitializeDll.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-
-#include "compiler/translator/Cache.h"
-#include "compiler/translator/InitializeDll.h"
-#include "compiler/translator/InitializeGlobals.h"
-
-#include "common/platform.h"
-
-#include <assert.h>
-
-namespace sh
-{
-
-bool InitProcess()
-{
- if (!InitializePoolIndex())
- {
- assert(0 && "InitProcess(): Failed to initalize global pool");
- return false;
- }
-
- TCache::initialize();
-
- return true;
-}
-
-void DetachProcess()
-{
- FreePoolIndex();
- TCache::destroy();
-}
-
-} // namespace sh