| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // Copyright 2016 The G3N Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package shader
- func init() {
- AddShader("shaderPanelVertex", shaderPanelVertex)
- AddShader("shaderPanelFrag", shaderPanelFrag)
- AddProgram("shaderPanel", "shaderPanelVertex", "shaderPanelFrag")
- }
- const shaderPanelVertex = `
- #version {{.Version}}
- // Vertex attributes
- {{template "attributes" .}}
- // Input uniforms
- uniform mat4 ModelMatrix;
- // Outputs for fragment shader
- out vec2 FragTexcoord;
- void main() {
- // Always flip texture coordinates
- vec2 texcoord = VertexTexcoord;
- texcoord.y = 1 - texcoord.y;
- FragTexcoord = texcoord;
- // Set position
- vec4 pos = vec4(VertexPosition.xyz, 1);
- gl_Position = ModelMatrix * pos;
- }
- `
- //
- // Fragment Shader template
- //
- const shaderPanelFrag = `
- #version {{.Version}}
- {{template "material" .}}
- // Inputs from vertex shader
- in vec2 FragTexcoord;
- // Input uniforms
- uniform vec4 Bounds;
- uniform vec4 Border;
- uniform vec4 Padding;
- uniform vec4 Content;
- uniform vec4 BorderColor;
- uniform vec4 PaddingColor;
- uniform vec4 ContentColor;
- // Output
- out vec4 FragColor;
- /***
- * Checks if current fragment texture coordinate is inside the
- * supplied rectangle in texture coordinates:
- * rect[0] - position x [0,1]
- * rect[1] - position y [0,1]
- * rect[2] - width [0,1]
- * rect[3] - height [0,1]
- */
- bool checkRect(vec4 rect) {
- if (FragTexcoord.x < rect[0]) {
- return false;
- }
- if (FragTexcoord.x > rect[0] + rect[2]) {
- return false;
- }
- if (FragTexcoord.y < rect[1]) {
- return false;
- }
- if (FragTexcoord.y > rect[1] + rect[3]) {
- return false;
- }
- return true;
- }
- void main() {
- // Discard fragment outside of received bounds
- // Bounds[0] - xmin
- // Bounds[1] - ymin
- // Bounds[2] - xmax
- // Bounds[3] - ymax
- if (FragTexcoord.x <= Bounds[0] || FragTexcoord.x >= Bounds[2]) {
- discard;
- }
- if (FragTexcoord.y <= Bounds[1] || FragTexcoord.y >= Bounds[3]) {
- discard;
- }
- // Check if fragment is inside content area
- if (checkRect(Content)) {
- // If no texture, the color will be the material color.
- vec4 color = ContentColor;
- {{ if .MatTexturesMax }}
- // Adjust texture coordinates to fit texture inside the content area
- vec2 offset = vec2(-Content[0], -Content[1]);
- vec2 factor = vec2(1/Content[2], 1/Content[3]);
- vec2 texcoord = (FragTexcoord + offset) * factor;
- color = texture(MatTexture[0], texcoord * MatTexRepeat[0] + MatTexOffset[0]);
- {{ end }}
- if (color.a == 0) {
- discard;
- }
- FragColor = color;
- return;
- }
- // Checks if fragment is inside paddings area
- if (checkRect(Padding)) {
- FragColor = PaddingColor;
- return;
- }
- // Checks if fragment is inside borders area
- if (checkRect(Border)) {
- FragColor = BorderColor;
- return;
- }
- // Fragment is in margins area (always transparent)
- FragColor = vec4(1,1,1,0);
- }
- `
|