mirror of https://github.com/adamdruppe/arsd.git
Fix nanovega compilation warnings
#include and #define made dmd and ldc very unhappy.
This commit is contained in:
parent
9cb2c9f539
commit
cac6bee486
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue