/* * 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 #include #include 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