summaryrefslogtreecommitdiff
path: root/Runtime/GfxDevice/opengles30/UnityGLES30Ext.cpp
blob: 37fcb09af110d3b5e3c73ab90ce0998cadbb2eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "UnityPrefix.h"
#include "IncludesGLES30.h"
#include "UnityGLES30Ext.h"
#include "Runtime/GfxDevice/opengles/ExtensionsGLES.h"

void Gles3ExtFunc::InitExtFunc()
{
	glPushGroupMarkerEXT					= (glPushGroupMarkerEXTFunc)GetGLExtProcAddress("glPushGroupMarkerEXT");
	glPopGroupMarkerEXT						= (glPopGroupMarkerEXTFunc)GetGLExtProcAddress("glPopGroupMarkerEXT");

	glAlphaFuncQCOM							= (glAlphaFuncQCOMFunc)GetGLExtProcAddress("glAlphaFuncQCOM");
}

Gles3ExtFunc gGles3ExtFunc;