ebiten/internal/graphics/shader.go

93 lines
2.5 KiB
Go
Raw Normal View History

// Copyright 2014 Hajime Hoshi
//
// 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.
2014-12-09 15:16:04 +01:00
package graphics
2013-06-15 10:07:14 +02:00
2013-12-12 16:31:00 +01:00
type shaderId int
const (
shaderVertexModelview shaderId = iota
shaderFragmentTexture
2013-12-12 16:31:00 +01:00
)
func shader(id shaderId) string {
2017-07-24 15:59:25 +02:00
return shaders[id]
2015-01-02 15:30:22 +01:00
}
var shaders = map[shaderId]string{
shaderVertexModelview: `
uniform mat4 projection_matrix;
attribute vec2 vertex;
attribute vec4 tex_coord;
attribute vec4 geo_matrix_body;
attribute vec2 geo_matrix_translation;
2017-12-03 11:07:12 +01:00
varying vec2 varying_tex_coord;
varying vec2 varying_tex_coord_min;
varying vec2 varying_tex_coord_max;
2013-06-15 10:07:14 +02:00
void main(void) {
2017-12-03 11:07:12 +01:00
varying_tex_coord = vec2(tex_coord[0], tex_coord[1]);
varying_tex_coord_min =
vec2(min(tex_coord[0], tex_coord[2]), min(tex_coord[1], tex_coord[3]));
2017-12-03 11:07:12 +01:00
varying_tex_coord_max =
vec2(max(tex_coord[0], tex_coord[2]), max(tex_coord[1], tex_coord[3]));
2016-10-24 20:04:06 +02:00
mat4 geo_matrix = mat4(
vec4(geo_matrix_body[0], geo_matrix_body[2], 0, 0),
vec4(geo_matrix_body[1], geo_matrix_body[3], 0, 0),
vec4(0, 0, 1, 0),
vec4(geo_matrix_translation, 0, 1)
);
2016-10-24 20:04:06 +02:00
gl_Position = projection_matrix * geo_matrix * vec4(vertex, 0, 1);
}
2013-06-15 10:07:14 +02:00
`,
shaderFragmentTexture: `
2017-07-24 15:59:25 +02:00
#if defined(GL_ES)
precision mediump float;
2017-07-24 15:59:25 +02:00
#else
#define lowp
#define mediump
#define highp
#endif
uniform sampler2D texture;
uniform mat4 color_matrix;
uniform vec4 color_matrix_translation;
2017-12-03 11:07:12 +01:00
varying vec2 varying_tex_coord;
varying vec2 varying_tex_coord_min;
varying vec2 varying_tex_coord_max;
2013-06-15 10:07:14 +02:00
void main(void) {
vec4 color = vec4(0, 0, 0, 0);
if (varying_tex_coord_min.x <= varying_tex_coord.x &&
varying_tex_coord_min.y <= varying_tex_coord.y &&
varying_tex_coord.x < varying_tex_coord_max.x &&
varying_tex_coord.y < varying_tex_coord_max.y) {
color = texture2D(texture, varying_tex_coord);
}
// Un-premultiply alpha
2016-06-26 08:57:45 +02:00
if (0.0 < color.a) {
color.rgb /= color.a;
}
// Apply the color matrix
color = (color_matrix * color) + color_matrix_translation;
color = clamp(color, 0.0, 1.0);
// Premultiply alpha
color.rgb *= color.a;
2014-12-22 14:49:14 +01:00
gl_FragColor = color;
}
2013-12-12 16:31:00 +01:00
`,
}