Fix nanovega compilation warnings

#include and #define made dmd and ldc very unhappy.
This commit is contained in:
Jan Jurzitza 2018-11-11 14:50:02 +01:00 committed by GitHub
parent 9cb2c9f539
commit cac6bee486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13205,7 +13205,7 @@ bool glnvg__renderCreate (void* uptr) nothrow @trusted @nogc {
}
};
enum fillFragShader = q{
enum fillFragShader = `
uniform vec4 frag[UNIFORM_ARRAY_SIZE];
uniform sampler2D tex;
uniform sampler2D clipTex;
@ -13311,7 +13311,7 @@ bool glnvg__renderCreate (void* uptr) nothrow @trusted @nogc {
}
gl_FragColor = color;
}
};
`;
enum clipVertShaderFill = q{
uniform vec2 viewSize;