OSDN Git Service

c9686908978ca157dac7092a8fcc402c7b92f4ef
[android-x86/external-swiftshader.git] / src / OpenGL / libEGL / Context.hpp
1 // Copyright 2016 The SwiftShader Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //    http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #ifndef egl_Context_hpp
16 #define egl_Context_hpp
17
18 #include "common/Object.hpp"
19
20 #include <EGL/egl.h>
21 #include <GLES/gl.h>
22
23 namespace gl { class Surface; }
24
25 namespace egl
26 {
27 class Display;
28 class Image;
29
30 class [[clang::lto_visibility_public]] Context : public gl::Object
31 {
32 public:
33         virtual void makeCurrent(gl::Surface *surface) = 0;
34         virtual void bindTexImage(gl::Surface *surface) = 0;
35         virtual EGLenum validateSharedImage(EGLenum target, GLuint name, GLuint textureLevel) = 0;
36         virtual Image *createSharedImage(EGLenum target, GLuint name, GLuint textureLevel) = 0;
37         virtual EGLint getClientVersion() const = 0;
38         virtual EGLint getConfigID() const = 0;
39         virtual void finish() = 0;
40
41         Display *getDisplay() const { return display; }
42
43 protected:
44         Context(egl::Display *display) : display(display) {}
45         virtual ~Context() {};
46
47         egl::Display *const display;
48 };
49 }
50
51 #endif   // egl_Context_hpp