NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
EGL.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2016-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
20 #ifndef DW_CORE_EGL_H_
21 #define DW_CORE_EGL_H_
22 
23 #include <dw/core/base/Config.h>
24 
32 #ifdef DW_USE_EGL
33 // Note: including these files brings a lot of defines that may cause conflicts (None, Bool, Status, etc)
34 #include <EGL/egl.h>
35 #include <EGL/eglext.h>
36 
37 #else
38 // Dummy defines
39 #ifndef DW_CORE_CONTEXT_H_
40 typedef void* EGLDisplay;
41 #endif
42 typedef void* EGLContext;
43 #endif
44 
47 #endif // DW_CORE_EGL_H_
EGLDisplay
void * EGLDisplay
Definition: EGL.h:40
EGLContext
void * EGLContext
Definition: EGL.h:42