summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/Data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/libANGLE/Data.cpp')
-rw-r--r--src/3rdparty/angle/src/libANGLE/Data.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/3rdparty/angle/src/libANGLE/Data.cpp b/src/3rdparty/angle/src/libANGLE/Data.cpp
deleted file mode 100644
index 83f04b5a0b..0000000000
--- a/src/3rdparty/angle/src/libANGLE/Data.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-//
-// Copyright (c) 2014 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.
-//
-
-// Data.cpp: Container class for all GL relevant state, caps and objects
-
-#include "libANGLE/Data.h"
-#include "libANGLE/ResourceManager.h"
-
-namespace gl
-{
-
-Data::Data(uintptr_t contextIn,
- GLint clientVersionIn,
- const State &stateIn,
- const Caps &capsIn,
- const TextureCapsMap &textureCapsIn,
- const Extensions &extensionsIn,
- const ResourceManager *resourceManagerIn,
- const Limitations &limitationsIn)
- : context(contextIn),
- clientVersion(clientVersionIn),
- state(&stateIn),
- caps(&capsIn),
- textureCaps(&textureCapsIn),
- extensions(&extensionsIn),
- resourceManager(resourceManagerIn),
- limitations(&limitationsIn)
-{}
-
-Data::~Data()
-{
-}
-
-ValidationContext::ValidationContext(GLint clientVersion,
- const State &state,
- const Caps &caps,
- const TextureCapsMap &textureCaps,
- const Extensions &extensions,
- const ResourceManager *resourceManager,
- const Limitations &limitations,
- bool skipValidation)
- : mData(reinterpret_cast<uintptr_t>(this),
- clientVersion,
- state,
- caps,
- textureCaps,
- extensions,
- resourceManager,
- limitations),
- mSkipValidation(skipValidation)
-{
-}
-} // namespace gl