mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
shaderir: Bug fix: Pass tests
This commit is contained in:
parent
4bd01fd038
commit
fa60e31997
@ -24,20 +24,14 @@ import (
|
||||
"testing"
|
||||
|
||||
. "github.com/hajimehoshi/ebiten/internal/shader"
|
||||
"github.com/hajimehoshi/ebiten/internal/shaderir"
|
||||
)
|
||||
|
||||
func normalize(str string) string {
|
||||
ls := strings.Split(strings.TrimSpace(str), "\n")
|
||||
var start int
|
||||
for i, l := range ls {
|
||||
if !strings.HasPrefix(l, "#endif") {
|
||||
continue
|
||||
}
|
||||
start = i + 1
|
||||
break
|
||||
if strings.HasPrefix(str, shaderir.GlslFragmentPrelude) {
|
||||
str = str[len(shaderir.GlslFragmentPrelude):]
|
||||
}
|
||||
ls = ls[start:]
|
||||
return strings.TrimSpace(strings.Join(ls, "\n"))
|
||||
return strings.TrimSpace(str)
|
||||
}
|
||||
|
||||
func TestCompile(t *testing.T) {
|
||||
|
@ -21,6 +21,15 @@ import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
const GlslFragmentPrelude = `#if defined(GL_ES)
|
||||
precision highp float;
|
||||
#else
|
||||
#define lowp
|
||||
#define mediump
|
||||
#define highp
|
||||
#endif
|
||||
`
|
||||
|
||||
func isValidSwizzling(s string) bool {
|
||||
if len(s) < 1 || 4 < len(s) {
|
||||
return false
|
||||
@ -95,15 +104,15 @@ func (p *Program) Glsl() (vertexShader, fragmentShader string) {
|
||||
if len(vslines) > 0 && vslines[len(vslines)-1] != "" {
|
||||
vslines = append(vslines, "")
|
||||
}
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
vslines = append(vslines, p.glslFunc(&f, true)...)
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
if len(vslines) > 0 && vslines[len(vslines)-1] != "" {
|
||||
vslines = append(vslines, "")
|
||||
for _, f := range p.Funcs {
|
||||
vslines = append(vslines, p.glslFunc(&f, true)...)
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
if len(vslines) > 0 && vslines[len(vslines)-1] != "" {
|
||||
vslines = append(vslines, "")
|
||||
}
|
||||
vslines = append(vslines, p.glslFunc(&f, false)...)
|
||||
}
|
||||
vslines = append(vslines, p.glslFunc(&f, false)...)
|
||||
}
|
||||
|
||||
if len(p.VertexFunc.Block.Stmts) > 0 {
|
||||
@ -119,16 +128,6 @@ func (p *Program) Glsl() (vertexShader, fragmentShader string) {
|
||||
// Fragment func
|
||||
var fslines []string
|
||||
{
|
||||
fslines = append(fslines,
|
||||
"#if defined(GL_ES)",
|
||||
"precision highp float;",
|
||||
"#else",
|
||||
"#define lowp",
|
||||
"#define mediump",
|
||||
"#define highp",
|
||||
"#endif",
|
||||
"")
|
||||
|
||||
for i, t := range p.Uniforms {
|
||||
fslines = append(fslines, fmt.Sprintf("uniform %s;", p.glslVarDecl(&t, fmt.Sprintf("U%d", i))))
|
||||
}
|
||||
@ -138,17 +137,19 @@ func (p *Program) Glsl() (vertexShader, fragmentShader string) {
|
||||
for i, t := range p.Varyings {
|
||||
fslines = append(fslines, fmt.Sprintf("varying %s;", p.glslVarDecl(&t, fmt.Sprintf("V%d", i))))
|
||||
}
|
||||
if len(fslines) > 0 && fslines[len(fslines)-1] != "" {
|
||||
fslines = append(fslines, "")
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
fslines = append(fslines, p.glslFunc(&f, true)...)
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
if len(p.Funcs) > 0 {
|
||||
if len(fslines) > 0 && fslines[len(fslines)-1] != "" {
|
||||
fslines = append(fslines, "")
|
||||
}
|
||||
fslines = append(fslines, p.glslFunc(&f, false)...)
|
||||
for _, f := range p.Funcs {
|
||||
fslines = append(fslines, p.glslFunc(&f, true)...)
|
||||
}
|
||||
for _, f := range p.Funcs {
|
||||
if len(fslines) > 0 && fslines[len(fslines)-1] != "" {
|
||||
fslines = append(fslines, "")
|
||||
}
|
||||
fslines = append(fslines, p.glslFunc(&f, false)...)
|
||||
}
|
||||
}
|
||||
|
||||
if len(p.FragmentFunc.Block.Stmts) > 0 {
|
||||
@ -171,10 +172,13 @@ func (p *Program) Glsl() (vertexShader, fragmentShader string) {
|
||||
}
|
||||
|
||||
vslines = append(stlines, vslines...)
|
||||
|
||||
tmp := make([]string, len(stlines))
|
||||
copy(tmp, stlines)
|
||||
fslines = append(tmp, fslines...)
|
||||
|
||||
fslines = append(strings.Split(GlslFragmentPrelude, "\n"), fslines...)
|
||||
|
||||
return strings.Join(vslines, "\n") + "\n", strings.Join(fslines, "\n") + "\n"
|
||||
}
|
||||
|
||||
|
@ -159,7 +159,7 @@ func TestOutput(t *testing.T) {
|
||||
Name: "Empty",
|
||||
Program: Program{},
|
||||
GlslVS: ``,
|
||||
GlslFS: ``,
|
||||
GlslFS: GlslFragmentPrelude,
|
||||
},
|
||||
{
|
||||
Name: "Uniform",
|
||||
@ -169,7 +169,8 @@ func TestOutput(t *testing.T) {
|
||||
},
|
||||
},
|
||||
GlslVS: `uniform float U0;`,
|
||||
GlslFS: `uniform float U0;`,
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
uniform float U0;`,
|
||||
},
|
||||
{
|
||||
Name: "UniformStruct",
|
||||
@ -187,7 +188,8 @@ func TestOutput(t *testing.T) {
|
||||
float M0;
|
||||
};
|
||||
uniform S0 U0;`,
|
||||
GlslFS: `struct S0 {
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
struct S0 {
|
||||
float M0;
|
||||
};
|
||||
uniform S0 U0;`,
|
||||
@ -208,7 +210,8 @@ uniform S0 U0;`,
|
||||
GlslVS: `uniform float U0;
|
||||
attribute vec2 A0;
|
||||
varying vec3 V0;`,
|
||||
GlslFS: `uniform float U0;
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
uniform float U0;
|
||||
varying vec3 V0;`,
|
||||
},
|
||||
{
|
||||
@ -224,7 +227,8 @@ varying vec3 V0;`,
|
||||
|
||||
void F0(void) {
|
||||
}`,
|
||||
GlslFS: `void F0(void);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(void);
|
||||
|
||||
void F0(void) {
|
||||
}`,
|
||||
@ -250,7 +254,8 @@ void F0(void) {
|
||||
|
||||
void F0(in float l0, in vec2 l1, in vec4 l2, out mat4 l3) {
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in vec2 l1, in vec4 l2, out mat4 l3);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in vec2 l1, in vec4 l2, out mat4 l3);
|
||||
|
||||
void F0(in float l0, in vec2 l1, in vec4 l2, out mat4 l3) {
|
||||
}`,
|
||||
@ -279,7 +284,8 @@ void F0(in float l0, in vec2 l1, in vec4 l2, out mat4 l3) {
|
||||
float F0(in float l0) {
|
||||
return l0;
|
||||
}`,
|
||||
GlslFS: `float F0(in float l0);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
float F0(in float l0);
|
||||
|
||||
float F0(in float l0) {
|
||||
return l0;
|
||||
@ -310,7 +316,8 @@ void F0(in float l0, out float l1) {
|
||||
mat4 l2 = mat4(0);
|
||||
mat4 l3 = mat4(0);
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, out float l1);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, out float l1);
|
||||
|
||||
void F0(in float l0, out float l1) {
|
||||
mat4 l2 = mat4(0);
|
||||
@ -356,7 +363,8 @@ void F0(in float l0, out float l1) {
|
||||
mat4 l5 = mat4(0);
|
||||
}
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, out float l1);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, out float l1);
|
||||
|
||||
void F0(in float l0, out float l1) {
|
||||
mat4 l2 = mat4(0);
|
||||
@ -399,7 +407,8 @@ void F0(in float l0, out float l1) {
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = (l0) + (l1);
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in float l1, out float l2);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in float l1, out float l2);
|
||||
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = (l0) + (l1);
|
||||
@ -438,7 +447,8 @@ void F0(in float l0, in float l1, out float l2) {
|
||||
void F0(in bool l0, in float l1, in float l2, out float l3) {
|
||||
l3 = (l0) ? (l1) : (l2);
|
||||
}`,
|
||||
GlslFS: `void F0(in bool l0, in float l1, in float l2, out float l3);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in bool l0, in float l1, in float l2, out float l3);
|
||||
|
||||
void F0(in bool l0, in float l1, in float l2, out float l3) {
|
||||
l3 = (l0) ? (l1) : (l2);
|
||||
@ -482,7 +492,8 @@ void F0(in float l0, in float l1, out vec2 l2) {
|
||||
F1();
|
||||
l2 = F2(l0, l1);
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in float l1, out vec2 l2);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in float l1, out vec2 l2);
|
||||
|
||||
void F0(in float l0, in float l1, out vec2 l2) {
|
||||
F1();
|
||||
@ -521,7 +532,8 @@ void F0(in float l0, in float l1, out vec2 l2) {
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = min(l0, l1);
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in float l1, out float l2);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in float l1, out float l2);
|
||||
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = min(l0, l1);
|
||||
@ -557,7 +569,8 @@ void F0(in float l0, in float l1, out float l2) {
|
||||
void F0(in vec4 l0, out vec2 l1) {
|
||||
l1 = (l0).xz;
|
||||
}`,
|
||||
GlslFS: `void F0(in vec4 l0, out vec2 l1);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in vec4 l0, out vec2 l1);
|
||||
|
||||
void F0(in vec4 l0, out vec2 l1) {
|
||||
l1 = (l0).xz;
|
||||
@ -612,7 +625,8 @@ void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = l1;
|
||||
}
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in float l1, out float l2);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in float l1, out float l2);
|
||||
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
if ((l0) == (0.0)) {
|
||||
@ -662,7 +676,8 @@ void F0(in float l0, in float l1, out float l2) {
|
||||
l2 = l0;
|
||||
}
|
||||
}`,
|
||||
GlslFS: `void F0(in float l0, in float l1, out float l2);
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
void F0(in float l0, in float l1, out float l2);
|
||||
|
||||
void F0(in float l0, in float l1, out float l2) {
|
||||
for (int l3 = 0; l3 < 100; l3++) {
|
||||
@ -715,7 +730,8 @@ void main(void) {
|
||||
V0 = A1;
|
||||
V1 = A2;
|
||||
}`,
|
||||
GlslFS: `uniform float U0;
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
uniform float U0;
|
||||
varying float V0;
|
||||
varying vec2 V1;`,
|
||||
},
|
||||
@ -784,7 +800,8 @@ void main(void) {
|
||||
V0 = A1;
|
||||
V1 = A2;
|
||||
}`,
|
||||
GlslFS: `uniform float U0;
|
||||
GlslFS: GlslFragmentPrelude + `
|
||||
uniform float U0;
|
||||
varying float V0;
|
||||
varying vec2 V1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user