summaryrefslogtreecommitdiffstats
path: root/opengl/libs/egl_tls.h
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2011-05-13 16:21:08 -0700
committerMathias Agopian <mathias@google.com>2011-05-16 19:02:45 -0700
commit7adf4ef0fad9973d9a07f2a73b2c4238c8e6bf7c (patch)
tree4c28764f141b482a42f152531e4920284a45f643 /opengl/libs/egl_tls.h
parent90bf262591a1772d06a18581c11a6115b89fc143 (diff)
downloadframeworks_base-7adf4ef0fad9973d9a07f2a73b2c4238c8e6bf7c.zip
frameworks_base-7adf4ef0fad9973d9a07f2a73b2c4238c8e6bf7c.tar.gz
frameworks_base-7adf4ef0fad9973d9a07f2a73b2c4238c8e6bf7c.tar.bz2
refactor EGL source code
no changes is functionality. split various objects into their own files. make egl_display objec's lock internal.
Diffstat (limited to 'opengl/libs/egl_tls.h')
-rw-r--r--opengl/libs/egl_tls.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/opengl/libs/egl_tls.h b/opengl/libs/egl_tls.h
deleted file mode 100644
index 087989a..0000000
--- a/opengl/libs/egl_tls.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- ** Copyright 2011, The Android Open Source Project
- **
- ** Licensed under the Apache License, Version 2.0 (the "License");
- ** you may not use this file except in compliance with the License.
- ** You may obtain a copy of the License at
- **
- ** http://www.apache.org/licenses/LICENSE-2.0
- **
- ** Unless required by applicable law or agreed to in writing, software
- ** distributed under the License is distributed on an "AS IS" BASIS,
- ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ** See the License for the specific language governing permissions and
- ** limitations under the License.
- */
-
-#ifndef ANDROID_EGL_TLS_H
-#define ANDROID_EGL_TLS_H
-
-#include <EGL/egl.h>
-
-#include "glesv2dbg.h"
-
-namespace android
-{
-struct tls_t {
- tls_t() : error(EGL_SUCCESS), ctx(0), logCallWithNoContext(EGL_TRUE), dbg(0) { }
- ~tls_t() {
- if (dbg)
- DestroyDbgContext(dbg);
- }
-
- EGLint error;
- EGLContext ctx;
- EGLBoolean logCallWithNoContext;
- DbgContext* dbg;
-};
-}
-
-#endif