ebiten/internal/shader/shader_test.go

127 lines
2.3 KiB
Go
Raw Normal View History

2020-05-08 17:46:01 +02:00
// Copyright 2020 The Ebiten Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package shader_test
import (
"testing"
. "github.com/hajimehoshi/ebiten/internal/shader"
)
2020-05-09 10:19:05 +02:00
func TestDump(t *testing.T) {
2020-05-08 17:46:01 +02:00
tests := []struct {
2020-05-10 12:48:24 +02:00
Name string
2020-05-10 13:41:43 +02:00
Src string
VS string
FS string
2020-05-08 17:46:01 +02:00
}{
{
Name: "uniforms",
Src: `package main
var (
Foo vec2
Boo vec4
)`,
VS: `uniform vec2 U0;
uniform vec4 U1;`,
},
2020-05-31 09:20:36 +02:00
{
Name: "func",
Src: `package main
func Foo(foo vec2) vec4 {
}`,
VS: `void F0(in vec2 l0, out vec4 l1) {
2020-05-31 11:01:12 +02:00
}`,
},
{
Name: "func body",
Src: `package main
func Foo(foo vec2) vec4 {
2020-05-31 12:20:53 +02:00
return vec4(foo, 0, 1)
2020-05-31 11:01:12 +02:00
}`,
VS: `void F0(in vec2 l0, out vec4 l1) {
l1 = vec4(l0, 0, 1);
return;
2020-05-31 12:20:53 +02:00
}`,
},
{
Name: "func multiple out params",
Src: `package main
func Foo(foo vec4) (float, float, float, float) {
return foo.x, foo.y, foo.z, foo.w
}`,
VS: `void F0(in vec4 l0, out float l1, out float l2, out float l3, out float l4) {
l1 = (l0).x;
l2 = (l0).y;
l3 = (l0).z;
l4 = (l0).w;
return;
}`,
2020-05-31 16:57:03 +02:00
},
{
Name: "blocks",
Src: `package main
func Foo(foo vec2) vec4 {
var r vec4
{
r.x = foo.x
var foo vec3
{
r.y = foo.y
var foo vec4
r.z = foo.z
}
}
return r
}`,
VS: `void F0(in vec2 l0, out vec4 l1) {
vec4 l2 = vec4(0.0);
{
vec3 l3 = vec3(0.0);
(l2).x = (l0).x;
{
vec4 l4 = vec4(0.0);
(l2).y = (l3).y;
(l2).z = (l4).z;
}
}
l1 = l2;
2020-05-31 12:20:53 +02:00
return;
2020-05-31 09:20:36 +02:00
}`,
},
2020-05-08 17:46:01 +02:00
}
for _, tc := range tests {
s, err := Compile([]byte(tc.Src))
2020-05-08 17:46:01 +02:00
if err != nil {
t.Error(err)
continue
}
vs, fs := s.Glsl()
if got, want := vs, tc.VS+"\n"; got != want {
t.Errorf("%s: got: %v, want: %v", tc.Name, got, want)
}
2020-05-31 16:57:03 +02:00
if tc.FS != "" {
if got, want := fs, tc.FS+"\n"; got != want {
t.Errorf("%s: got: %v, want: %v", tc.Name, got, want)
}
2020-05-08 17:46:01 +02:00
}
}
}