Files
UnrealEngine/Engine/Source/Runtime/OpenGLDrv/Private/Linux/LinuxOpenGLFunctions.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
514 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LinuxOpenGLFunctions.h"
/*------------------------------------------------------------------------------
OpenGL function pointers.
------------------------------------------------------------------------------*/
#define DEFINE_GL_ENTRYPOINTS(Type,Func) Type Func = NULL;
namespace GLFuncPointers // see explanation in LinuxOpenGLFunctions.h why we need the namespace
{
ENUM_GL_ENTRYPOINTS_ALL(DEFINE_GL_ENTRYPOINTS);
};
#undef DEFINE_GL_ENTRYPOINTS