2020-05-24 13:15:07 +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 testing
|
|
|
|
|
|
|
|
import (
|
2022-03-21 09:48:47 +01:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2022-04-03 19:15:33 +02:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/shaderir"
|
2020-05-24 13:15:07 +02:00
|
|
|
)
|
|
|
|
|
2022-03-21 09:48:47 +01:00
|
|
|
// ShaderProgramFill returns a shader source to fill the frambuffer.
|
2022-04-03 19:15:33 +02:00
|
|
|
func ShaderProgramFill(r, g, b, a byte) *shaderir.Program {
|
2023-08-01 04:41:27 +02:00
|
|
|
ir, err := graphics.CompileShader([]byte(fmt.Sprintf(`//kage:unit pixels
|
2023-04-16 11:56:14 +02:00
|
|
|
|
|
|
|
package main
|
2022-02-27 12:11:27 +01:00
|
|
|
|
2023-09-24 08:59:58 +02:00
|
|
|
func Fragment(dstPos vec4, srcPos vec2, color vec4) vec4 {
|
2022-03-21 09:48:47 +01:00
|
|
|
return vec4(%0.9f, %0.9f, %0.9f, %0.9f)
|
2022-02-27 12:11:27 +01:00
|
|
|
}
|
2022-04-03 19:15:33 +02:00
|
|
|
`, float64(r)/0xff, float64(g)/0xff, float64(b)/0xff, float64(a)/0xff)))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ir
|
2022-02-27 12:11:27 +01:00
|
|
|
}
|
|
|
|
|
2022-03-21 09:48:47 +01:00
|
|
|
// ShaderProgramImages returns a shader source to render the frambuffer with the given images.
|
2022-04-03 19:15:33 +02:00
|
|
|
func ShaderProgramImages(numImages int) *shaderir.Program {
|
2022-03-21 09:48:47 +01:00
|
|
|
if numImages <= 0 {
|
|
|
|
panic("testing: numImages must be >= 1")
|
2020-05-24 15:15:50 +02:00
|
|
|
}
|
2020-05-24 10:14:37 +02:00
|
|
|
|
2022-03-21 09:48:47 +01:00
|
|
|
var exprs []string
|
|
|
|
for i := 0; i < numImages; i++ {
|
2023-09-24 08:59:58 +02:00
|
|
|
exprs = append(exprs, fmt.Sprintf("imageSrc%dUnsafeAt(srcPos)", i))
|
2020-05-24 15:15:50 +02:00
|
|
|
}
|
2020-07-18 12:56:22 +02:00
|
|
|
|
2023-08-01 04:41:27 +02:00
|
|
|
ir, err := graphics.CompileShader([]byte(fmt.Sprintf(`//kage:unit pixels
|
2023-04-16 11:56:14 +02:00
|
|
|
|
|
|
|
package main
|
2020-05-24 15:15:50 +02:00
|
|
|
|
2023-09-24 08:59:58 +02:00
|
|
|
func Fragment(dstPos vec4, srcPos vec2, color vec4) vec4 {
|
2022-03-21 09:48:47 +01:00
|
|
|
return %s
|
2020-05-24 13:15:07 +02:00
|
|
|
}
|
2022-04-03 19:15:33 +02:00
|
|
|
`, strings.Join(exprs, " + "))))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ir
|
2020-05-24 10:14:37 +02:00
|
|
|
}
|