another GL_CLIP_DISTANCE0 build fix
This commit is contained in:
parent
270eaa1452
commit
6ed78d1202
|
@ -18,11 +18,6 @@
|
||||||
*/
|
*/
|
||||||
#include "naomi2.h"
|
#include "naomi2.h"
|
||||||
|
|
||||||
// FIXME GLES
|
|
||||||
#ifndef GL_CLIP_DISTANCE0
|
|
||||||
#define GL_CLIP_DISTANCE0 0x3000
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const char* N2VertexShader = R"(
|
const char* N2VertexShader = R"(
|
||||||
uniform vec4 depth_scale;
|
uniform vec4 depth_scale;
|
||||||
uniform mat4 normal_matrix;
|
uniform mat4 normal_matrix;
|
||||||
|
|
|
@ -19,6 +19,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "gles.h"
|
#include "gles.h"
|
||||||
|
|
||||||
|
// FIXME GLES
|
||||||
|
#ifndef GL_CLIP_DISTANCE0
|
||||||
|
#define GL_CLIP_DISTANCE0 0x3000
|
||||||
|
#endif
|
||||||
|
|
||||||
class N2VertexSource : public OpenGlSource
|
class N2VertexSource : public OpenGlSource
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue