OpenCAX/entry/src/main/cpp/NativeEGLOCCT/EGLCore.h
JackLee 6e51b8ba36 重构布局.独立文件菜单.
应用模块独立为公共模块.方便模块切换.
未开发:需要对装饰器重新定义.
2026-03-05 17:17:40 +08:00

45 lines
1.4 KiB
C++

/*
* Copyright (c) 2025 Huawei Device Co., Ltd.
* 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 EGLCORE_H
#define EGLCORE_H
#include <EGL/egl.h>
#include <GLES3/gl3.h>
#include <native_window/external_window.h>
namespace NativeOpenCAX {
class EGLCore {
public:
EGLCore();
~EGLCore();
bool init(OHNativeWindow* window);
void makeCurrent();
bool swapBuffers();
void destroy();
EGLSurface getSurface() const { return eglSurface; }
EGLContext getContext() const { return eglContext; }
EGLDisplay getDisplay() const { return eglDisplay; }
EGLConfig getConfig() const { return eglConfig; }
OHNativeWindow* getOHNativeWindow()const{return nativeWindow;}
private:
EGLDisplay eglDisplay;
EGLContext eglContext;
EGLSurface eglSurface;
EGLConfig eglConfig;
OHNativeWindow* nativeWindow;
};
} // namespace NativeOpenCAX
#endif // EGLCORE_H