summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/angle/src/compiler/InitializeDll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/angle/src/compiler/InitializeDll.cpp')
-rw-r--r--chromium/third_party/angle/src/compiler/InitializeDll.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/chromium/third_party/angle/src/compiler/InitializeDll.cpp b/chromium/third_party/angle/src/compiler/InitializeDll.cpp
deleted file mode 100644
index 6c7f27fced1..00000000000
--- a/chromium/third_party/angle/src/compiler/InitializeDll.cpp
+++ /dev/null
@@ -1,32 +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/InitializeDll.h"
-
-#include "compiler/InitializeGlobals.h"
-#include "compiler/InitializeParseContext.h"
-#include "compiler/osinclude.h"
-
-bool InitProcess()
-{
- if (!InitializePoolIndex()) {
- assert(0 && "InitProcess(): Failed to initalize global pool");
- return false;
- }
-
- if (!InitializeParseContextIndex()) {
- assert(0 && "InitProcess(): Failed to initalize parse context");
- return false;
- }
-
- return true;
-}
-
-void DetachProcess()
-{
- FreeParseContextIndex();
- FreePoolIndex();
-}