2017-02-22 13:44:38 -06:00
|
|
|
package pixelgl
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
import (
|
2017-03-05 17:28:52 -06:00
|
|
|
"fmt"
|
2017-01-21 19:43:13 -06:00
|
|
|
"image/color"
|
|
|
|
|
2017-02-11 07:09:47 -06:00
|
|
|
"github.com/faiface/glhf"
|
2017-01-21 19:43:13 -06:00
|
|
|
"github.com/faiface/mainthread"
|
2017-02-22 13:44:38 -06:00
|
|
|
"github.com/faiface/pixel"
|
2017-01-21 19:43:13 -06:00
|
|
|
"github.com/go-gl/mathgl/mgl32"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2017-03-15 16:55:43 -05:00
|
|
|
// Canvas is an off-screen rectangular BasicTarget and Picture at the same time, that you can draw
|
|
|
|
// onto.
|
2017-01-21 19:43:13 -06:00
|
|
|
//
|
2017-03-05 17:28:52 -06:00
|
|
|
// It supports TrianglesPosition, TrianglesColor, TrianglesPicture and PictureColor.
|
2017-01-21 19:43:13 -06:00
|
|
|
type Canvas struct {
|
2017-04-01 14:54:44 -05:00
|
|
|
gf *GLFrame
|
|
|
|
shader *glhf.Shader
|
2017-03-31 08:03:06 -05:00
|
|
|
|
2017-04-09 17:30:50 -05:00
|
|
|
cmp pixel.ComposeMethod
|
2017-03-08 12:19:20 -06:00
|
|
|
mat mgl32.Mat3
|
|
|
|
col mgl32.Vec4
|
2017-01-21 20:05:46 -06:00
|
|
|
smooth bool
|
2017-04-12 09:00:56 -05:00
|
|
|
|
|
|
|
sprite *pixel.Sprite
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-04-09 17:30:50 -05:00
|
|
|
var _ pixel.ComposeTarget = (*Canvas)(nil)
|
|
|
|
|
2017-04-09 17:47:06 -05:00
|
|
|
// NewCanvas creates a new empty, fully transparent Canvas with given bounds.
|
|
|
|
func NewCanvas(bounds pixel.Rect) *Canvas {
|
2017-03-05 17:28:52 -06:00
|
|
|
c := &Canvas{
|
2017-04-09 17:47:06 -05:00
|
|
|
gf: NewGLFrame(bounds),
|
|
|
|
mat: mgl32.Ident3(),
|
|
|
|
col: mgl32.Vec4{1, 1, 1, 1},
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
|
|
|
|
2017-04-01 14:54:44 -05:00
|
|
|
c.SetBounds(bounds)
|
|
|
|
|
|
|
|
var shader *glhf.Shader
|
2017-01-21 19:43:13 -06:00
|
|
|
mainthread.Call(func() {
|
|
|
|
var err error
|
2017-04-01 14:54:44 -05:00
|
|
|
shader, err = glhf.NewShader(
|
2017-01-21 19:43:13 -06:00
|
|
|
canvasVertexFormat,
|
|
|
|
canvasUniformFormat,
|
|
|
|
canvasVertexShader,
|
|
|
|
canvasFragmentShader,
|
|
|
|
)
|
|
|
|
if err != nil {
|
2017-03-05 17:28:52 -06:00
|
|
|
panic(errors.Wrap(err, "failed to create Canvas, there's a bug in the shader"))
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
})
|
2017-04-01 14:54:44 -05:00
|
|
|
c.shader = shader
|
2017-03-05 17:28:52 -06:00
|
|
|
|
2017-01-21 19:43:13 -06:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// MakeTriangles creates a specialized copy of the supplied Triangles that draws onto this Canvas.
|
|
|
|
//
|
|
|
|
// TrianglesPosition, TrianglesColor and TrianglesPicture are supported.
|
|
|
|
func (c *Canvas) MakeTriangles(t pixel.Triangles) pixel.TargetTriangles {
|
|
|
|
return &canvasTriangles{
|
2017-04-01 14:54:44 -05:00
|
|
|
GLTriangles: NewGLTriangles(c.shader, t),
|
2017-03-08 09:29:25 -06:00
|
|
|
dst: c,
|
2017-01-21 20:05:46 -06:00
|
|
|
}
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
2017-01-21 20:05:46 -06:00
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// MakePicture create a specialized copy of the supplied Picture that draws onto this Canvas.
|
|
|
|
//
|
|
|
|
// PictureColor is supported.
|
|
|
|
func (c *Canvas) MakePicture(p pixel.Picture) pixel.TargetPicture {
|
2017-03-06 12:04:57 -06:00
|
|
|
if cp, ok := p.(*canvasPicture); ok {
|
2017-04-01 14:54:44 -05:00
|
|
|
return &canvasPicture{
|
|
|
|
GLPicture: cp.GLPicture,
|
|
|
|
dst: c,
|
2017-03-07 13:33:07 -06:00
|
|
|
}
|
|
|
|
}
|
2017-04-01 14:54:44 -05:00
|
|
|
if gp, ok := p.(GLPicture); ok {
|
|
|
|
return &canvasPicture{
|
|
|
|
GLPicture: gp,
|
|
|
|
dst: c,
|
2017-03-06 06:05:45 -06:00
|
|
|
}
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
2017-04-01 14:54:44 -05:00
|
|
|
return &canvasPicture{
|
|
|
|
GLPicture: NewGLPicture(p),
|
|
|
|
dst: c,
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-06 12:58:24 -06:00
|
|
|
// SetMatrix sets a Matrix that every point will be projected by.
|
|
|
|
func (c *Canvas) SetMatrix(m pixel.Matrix) {
|
|
|
|
for i := range m {
|
|
|
|
c.mat[i] = float32(m[i])
|
|
|
|
}
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// SetColorMask sets a color that every color in triangles or a picture will be multiplied by.
|
|
|
|
func (c *Canvas) SetColorMask(col color.Color) {
|
2017-04-10 10:25:56 -05:00
|
|
|
rgba := pixel.Alpha(1)
|
2017-03-05 17:28:52 -06:00
|
|
|
if col != nil {
|
2017-04-09 15:00:26 -05:00
|
|
|
rgba = pixel.ToRGBA(col)
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
|
|
|
c.col = mgl32.Vec4{
|
2017-04-09 15:00:26 -05:00
|
|
|
float32(rgba.R),
|
|
|
|
float32(rgba.G),
|
|
|
|
float32(rgba.B),
|
|
|
|
float32(rgba.A),
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-04-09 17:30:50 -05:00
|
|
|
// SetComposeMethod sets a Porter-Duff composition method to be used in the following draws onto
|
|
|
|
// this Canvas.
|
|
|
|
func (c *Canvas) SetComposeMethod(cmp pixel.ComposeMethod) {
|
|
|
|
c.cmp = cmp
|
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// SetBounds resizes the Canvas to the new bounds. Old content will be preserved.
|
|
|
|
func (c *Canvas) SetBounds(bounds pixel.Rect) {
|
2017-04-01 14:54:44 -05:00
|
|
|
c.gf.SetBounds(bounds)
|
2017-04-12 09:02:39 -05:00
|
|
|
if c.sprite == nil {
|
|
|
|
c.sprite = pixel.NewSprite(nil, pixel.Rect{})
|
|
|
|
}
|
2017-04-12 09:00:56 -05:00
|
|
|
c.sprite.Set(c, c.Bounds())
|
2017-04-12 09:02:39 -05:00
|
|
|
c.sprite.SetMatrix(pixel.IM.Moved(c.Bounds().Center()))
|
2017-01-25 10:33:33 -06:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// Bounds returns the rectangular bounds of the Canvas.
|
|
|
|
func (c *Canvas) Bounds() pixel.Rect {
|
2017-04-01 14:54:44 -05:00
|
|
|
return c.gf.Bounds()
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-15 16:55:43 -05:00
|
|
|
// SetSmooth sets whether stretched Pictures drawn onto this Canvas should be drawn smooth or
|
2017-03-05 17:28:52 -06:00
|
|
|
// pixely.
|
|
|
|
func (c *Canvas) SetSmooth(smooth bool) {
|
|
|
|
c.smooth = smooth
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-15 16:55:43 -05:00
|
|
|
// Smooth returns whether stretched Pictures drawn onto this Canvas are set to be drawn smooth or
|
|
|
|
// pixely.
|
2017-03-05 17:28:52 -06:00
|
|
|
func (c *Canvas) Smooth() bool {
|
|
|
|
return c.smooth
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-07 10:45:46 -06:00
|
|
|
// must be manually called inside mainthread
|
|
|
|
func (c *Canvas) setGlhfBounds() {
|
2017-04-21 16:07:48 -05:00
|
|
|
_, _, bw, bh := intBounds(c.gf.Bounds())
|
|
|
|
glhf.Bounds(0, 0, bw, bh)
|
2017-03-07 10:45:46 -06:00
|
|
|
}
|
|
|
|
|
2017-04-09 17:30:50 -05:00
|
|
|
// must be manually called inside mainthread
|
2017-04-09 17:41:56 -05:00
|
|
|
func setBlendFunc(cmp pixel.ComposeMethod) {
|
|
|
|
switch cmp {
|
2017-04-09 17:30:50 -05:00
|
|
|
case pixel.ComposeOver:
|
|
|
|
glhf.BlendFunc(glhf.One, glhf.OneMinusSrcAlpha)
|
|
|
|
case pixel.ComposeIn:
|
|
|
|
glhf.BlendFunc(glhf.DstAlpha, glhf.Zero)
|
|
|
|
case pixel.ComposeOut:
|
|
|
|
glhf.BlendFunc(glhf.OneMinusDstAlpha, glhf.Zero)
|
|
|
|
case pixel.ComposeAtop:
|
|
|
|
glhf.BlendFunc(glhf.DstAlpha, glhf.OneMinusSrcAlpha)
|
2017-04-10 06:59:16 -05:00
|
|
|
case pixel.ComposeRover:
|
2017-04-09 17:30:50 -05:00
|
|
|
glhf.BlendFunc(glhf.OneMinusDstAlpha, glhf.One)
|
2017-04-10 06:59:16 -05:00
|
|
|
case pixel.ComposeRin:
|
2017-04-09 17:30:50 -05:00
|
|
|
glhf.BlendFunc(glhf.Zero, glhf.SrcAlpha)
|
2017-04-10 06:59:16 -05:00
|
|
|
case pixel.ComposeRout:
|
2017-04-09 17:30:50 -05:00
|
|
|
glhf.BlendFunc(glhf.Zero, glhf.OneMinusSrcAlpha)
|
2017-04-10 06:59:16 -05:00
|
|
|
case pixel.ComposeRatop:
|
2017-04-09 17:30:50 -05:00
|
|
|
glhf.BlendFunc(glhf.OneMinusDstAlpha, glhf.SrcAlpha)
|
|
|
|
case pixel.ComposeXor:
|
|
|
|
glhf.BlendFunc(glhf.OneMinusDstAlpha, glhf.OneMinusSrcAlpha)
|
2017-04-10 06:59:16 -05:00
|
|
|
case pixel.ComposePlus:
|
|
|
|
glhf.BlendFunc(glhf.One, glhf.One)
|
|
|
|
case pixel.ComposeCopy:
|
|
|
|
glhf.BlendFunc(glhf.One, glhf.Zero)
|
2017-04-09 17:30:50 -05:00
|
|
|
default:
|
|
|
|
panic(errors.New("Canvas: invalid compose method"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-15 16:55:43 -05:00
|
|
|
// Clear fills the whole Canvas with a single color.
|
2017-03-05 17:28:52 -06:00
|
|
|
func (c *Canvas) Clear(color color.Color) {
|
2017-04-01 14:54:44 -05:00
|
|
|
c.gf.Dirty()
|
2017-03-07 10:45:46 -06:00
|
|
|
|
2017-04-09 15:00:26 -05:00
|
|
|
rgba := pixel.ToRGBA(color)
|
2017-03-07 10:45:46 -06:00
|
|
|
|
2017-03-08 08:02:40 -06:00
|
|
|
// color masking
|
2017-04-09 15:00:26 -05:00
|
|
|
rgba = rgba.Mul(pixel.RGBA{
|
2017-03-08 08:02:40 -06:00
|
|
|
R: float64(c.col[0]),
|
|
|
|
G: float64(c.col[1]),
|
|
|
|
B: float64(c.col[2]),
|
|
|
|
A: float64(c.col[3]),
|
|
|
|
})
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
mainthread.CallNonBlock(func() {
|
2017-03-07 10:45:46 -06:00
|
|
|
c.setGlhfBounds()
|
2017-04-01 14:54:44 -05:00
|
|
|
c.gf.Frame().Begin()
|
2017-03-05 17:28:52 -06:00
|
|
|
glhf.Clear(
|
2017-04-09 15:00:26 -05:00
|
|
|
float32(rgba.R),
|
|
|
|
float32(rgba.G),
|
|
|
|
float32(rgba.B),
|
|
|
|
float32(rgba.A),
|
2017-03-05 17:28:52 -06:00
|
|
|
)
|
2017-04-01 14:54:44 -05:00
|
|
|
c.gf.Frame().End()
|
2017-03-05 17:28:52 -06:00
|
|
|
})
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-07 10:45:46 -06:00
|
|
|
// Color returns the color of the pixel over the given position inside the Canvas.
|
2017-04-09 15:00:26 -05:00
|
|
|
func (c *Canvas) Color(at pixel.Vec) pixel.RGBA {
|
2017-04-01 14:54:44 -05:00
|
|
|
return c.gf.Color(at)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Texture returns the underlying OpenGL Texture of this Canvas.
|
|
|
|
//
|
|
|
|
// Implements GLPicture interface.
|
|
|
|
func (c *Canvas) Texture() *glhf.Texture {
|
|
|
|
return c.gf.Texture()
|
2017-03-07 10:45:46 -06:00
|
|
|
}
|
|
|
|
|
2017-04-28 06:24:30 -05:00
|
|
|
// SetPixels replaces the content of the Canvas with the provided pixels. The provided slice must be
|
|
|
|
// an alpha-premultiplied RGBA sequence of correct length (4 * width * height).
|
|
|
|
func (c *Canvas) SetPixels(pixels []uint8) {
|
|
|
|
c.gf.Dirty()
|
|
|
|
|
|
|
|
mainthread.Call(func() {
|
|
|
|
tex := c.Texture()
|
|
|
|
tex.Begin()
|
|
|
|
tex.SetPixels(0, 0, tex.Width(), tex.Height(), pixels)
|
|
|
|
tex.End()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pixels returns an alpha-premultiplied RGBA sequence of the content of the Canvas.
|
|
|
|
func (c *Canvas) Pixels() []uint8 {
|
|
|
|
var pixels []uint8
|
|
|
|
|
|
|
|
mainthread.Call(func() {
|
|
|
|
tex := c.Texture()
|
|
|
|
tex.Begin()
|
|
|
|
pixels = tex.Pixels(0, 0, tex.Width(), tex.Height())
|
|
|
|
tex.End()
|
|
|
|
})
|
|
|
|
|
|
|
|
return pixels
|
|
|
|
}
|
|
|
|
|
2017-04-12 09:00:56 -05:00
|
|
|
// Draw draws a rectangle equal to Canvas's Bounds containing the Canvas's content to another
|
|
|
|
// Target.
|
|
|
|
//
|
|
|
|
// Note, that the matrix and the color mask of this Canvas have no effect here.
|
|
|
|
func (c *Canvas) Draw(t pixel.Target) {
|
|
|
|
c.sprite.Draw(t)
|
|
|
|
}
|
|
|
|
|
2017-01-21 19:43:13 -06:00
|
|
|
type canvasTriangles struct {
|
2017-03-05 17:28:52 -06:00
|
|
|
*GLTriangles
|
2017-03-08 09:29:25 -06:00
|
|
|
dst *Canvas
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-03-30 16:34:07 -05:00
|
|
|
func (ct *canvasTriangles) draw(tex *glhf.Texture, bounds pixel.Rect) {
|
2017-04-01 14:54:44 -05:00
|
|
|
ct.dst.gf.Dirty()
|
2017-03-07 10:45:46 -06:00
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
// save the current state vars to avoid race condition
|
2017-04-09 17:41:56 -05:00
|
|
|
cmp := ct.dst.cmp
|
2017-03-08 09:29:25 -06:00
|
|
|
mat := ct.dst.mat
|
|
|
|
col := ct.dst.col
|
2017-04-09 17:41:56 -05:00
|
|
|
smt := ct.dst.smooth
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
mainthread.CallNonBlock(func() {
|
2017-03-08 09:29:25 -06:00
|
|
|
ct.dst.setGlhfBounds()
|
2017-04-09 17:41:56 -05:00
|
|
|
setBlendFunc(cmp)
|
2017-04-01 14:54:44 -05:00
|
|
|
|
|
|
|
frame := ct.dst.gf.Frame()
|
|
|
|
shader := ct.dst.shader
|
|
|
|
|
|
|
|
frame.Begin()
|
|
|
|
shader.Begin()
|
|
|
|
|
|
|
|
dstBounds := ct.dst.Bounds()
|
|
|
|
shader.SetUniformAttr(canvasBounds, mgl32.Vec4{
|
|
|
|
float32(dstBounds.Min.X()),
|
|
|
|
float32(dstBounds.Min.Y()),
|
|
|
|
float32(dstBounds.W()),
|
|
|
|
float32(dstBounds.H()),
|
2017-03-06 17:32:58 -06:00
|
|
|
})
|
2017-04-01 14:54:44 -05:00
|
|
|
shader.SetUniformAttr(canvasTransform, mat)
|
|
|
|
shader.SetUniformAttr(canvasColorMask, col)
|
2017-01-21 19:43:13 -06:00
|
|
|
|
2017-03-07 13:33:07 -06:00
|
|
|
if tex == nil {
|
2017-03-05 17:28:52 -06:00
|
|
|
ct.vs.Begin()
|
|
|
|
ct.vs.Draw()
|
|
|
|
ct.vs.End()
|
2017-01-21 19:43:13 -06:00
|
|
|
} else {
|
2017-03-07 13:33:07 -06:00
|
|
|
tex.Begin()
|
2017-03-05 17:28:52 -06:00
|
|
|
|
2017-04-01 14:54:44 -05:00
|
|
|
bx, by, bw, bh := intBounds(bounds)
|
|
|
|
shader.SetUniformAttr(canvasTexBounds, mgl32.Vec4{
|
|
|
|
float32(bx),
|
|
|
|
float32(by),
|
|
|
|
float32(bw),
|
|
|
|
float32(bh),
|
2017-03-05 17:28:52 -06:00
|
|
|
})
|
|
|
|
|
2017-04-09 17:41:56 -05:00
|
|
|
if tex.Smooth() != smt {
|
|
|
|
tex.SetSmooth(smt)
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ct.vs.Begin()
|
|
|
|
ct.vs.Draw()
|
|
|
|
ct.vs.End()
|
|
|
|
|
2017-03-07 13:33:07 -06:00
|
|
|
tex.End()
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
2017-04-01 14:54:44 -05:00
|
|
|
shader.End()
|
|
|
|
frame.End()
|
2017-01-21 19:43:13 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
func (ct *canvasTriangles) Draw() {
|
2017-03-30 16:34:07 -05:00
|
|
|
ct.draw(nil, pixel.Rect{})
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type canvasPicture struct {
|
2017-04-01 14:54:44 -05:00
|
|
|
GLPicture
|
|
|
|
dst *Canvas
|
2017-03-08 09:37:57 -06:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
func (cp *canvasPicture) Draw(t pixel.TargetTriangles) {
|
|
|
|
ct := t.(*canvasTriangles)
|
2017-03-08 09:29:25 -06:00
|
|
|
if cp.dst != ct.dst {
|
2017-03-08 16:51:53 -06:00
|
|
|
panic(fmt.Errorf("(%T).Draw: TargetTriangles generated by different Canvas", cp))
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
2017-04-01 14:54:44 -05:00
|
|
|
ct.draw(cp.GLPicture.Texture(), cp.GLPicture.Bounds())
|
2017-03-05 17:28:52 -06:00
|
|
|
}
|
|
|
|
|
2017-01-21 19:43:13 -06:00
|
|
|
const (
|
2017-03-05 17:28:52 -06:00
|
|
|
canvasPosition int = iota
|
|
|
|
canvasColor
|
2017-04-26 10:29:25 -05:00
|
|
|
canvasTexCoords
|
2017-03-05 17:28:52 -06:00
|
|
|
canvasIntensity
|
2017-01-21 19:43:13 -06:00
|
|
|
)
|
|
|
|
|
2017-02-11 07:09:47 -06:00
|
|
|
var canvasVertexFormat = glhf.AttrFormat{
|
2017-03-05 17:28:52 -06:00
|
|
|
canvasPosition: {Name: "position", Type: glhf.Vec2},
|
|
|
|
canvasColor: {Name: "color", Type: glhf.Vec4},
|
2017-04-26 10:29:25 -05:00
|
|
|
canvasTexCoords: {Name: "texCoords", Type: glhf.Vec2},
|
2017-03-05 17:28:52 -06:00
|
|
|
canvasIntensity: {Name: "intensity", Type: glhf.Float},
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2017-03-05 17:28:52 -06:00
|
|
|
canvasTransform int = iota
|
|
|
|
canvasColorMask
|
2017-03-06 17:32:58 -06:00
|
|
|
canvasBounds
|
2017-03-06 09:09:09 -06:00
|
|
|
canvasTexBounds
|
2017-01-21 19:43:13 -06:00
|
|
|
)
|
|
|
|
|
2017-02-11 07:09:47 -06:00
|
|
|
var canvasUniformFormat = glhf.AttrFormat{
|
2017-03-30 16:34:07 -05:00
|
|
|
canvasTransform: {Name: "transform", Type: glhf.Mat3},
|
|
|
|
canvasColorMask: {Name: "colorMask", Type: glhf.Vec4},
|
|
|
|
canvasBounds: {Name: "bounds", Type: glhf.Vec4},
|
|
|
|
canvasTexBounds: {Name: "texBounds", Type: glhf.Vec4},
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
var canvasVertexShader = `
|
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
in vec2 position;
|
|
|
|
in vec4 color;
|
2017-04-26 10:29:25 -05:00
|
|
|
in vec2 texCoords;
|
2017-03-05 17:28:52 -06:00
|
|
|
in float intensity;
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
out vec4 Color;
|
2017-04-26 10:29:25 -05:00
|
|
|
out vec2 TexCoords;
|
2017-03-05 17:28:52 -06:00
|
|
|
out float Intensity;
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
uniform mat3 transform;
|
2017-03-06 17:32:58 -06:00
|
|
|
uniform vec4 bounds;
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
void main() {
|
2017-03-05 17:28:52 -06:00
|
|
|
vec2 transPos = (transform * vec3(position, 1.0)).xy;
|
2017-04-13 13:30:32 -05:00
|
|
|
vec2 normPos = (transPos - bounds.xy) / bounds.zw * 2 - vec2(1, 1);
|
2017-03-05 17:28:52 -06:00
|
|
|
gl_Position = vec4(normPos, 0.0, 1.0);
|
2017-01-21 19:43:13 -06:00
|
|
|
Color = color;
|
2017-04-26 10:29:25 -05:00
|
|
|
TexCoords = texCoords;
|
2017-03-05 17:28:52 -06:00
|
|
|
Intensity = intensity;
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
var canvasFragmentShader = `
|
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
in vec4 Color;
|
2017-04-26 10:29:25 -05:00
|
|
|
in vec2 TexCoords;
|
2017-03-05 17:28:52 -06:00
|
|
|
in float Intensity;
|
2017-01-21 19:43:13 -06:00
|
|
|
|
|
|
|
out vec4 color;
|
|
|
|
|
2017-03-05 17:28:52 -06:00
|
|
|
uniform vec4 colorMask;
|
2017-03-06 09:09:09 -06:00
|
|
|
uniform vec4 texBounds;
|
2017-01-21 19:43:13 -06:00
|
|
|
uniform sampler2D tex;
|
|
|
|
|
|
|
|
void main() {
|
2017-03-05 17:28:52 -06:00
|
|
|
if (Intensity == 0) {
|
|
|
|
color = colorMask * Color;
|
2017-01-21 19:43:13 -06:00
|
|
|
} else {
|
2017-03-05 17:28:52 -06:00
|
|
|
color = vec4(0, 0, 0, 0);
|
2017-04-09 15:00:26 -05:00
|
|
|
color += (1 - Intensity) * Color;
|
2017-04-26 10:29:25 -05:00
|
|
|
vec2 t = (TexCoords - texBounds.xy) / texBounds.zw;
|
2017-04-09 15:00:26 -05:00
|
|
|
color += Intensity * Color * texture(tex, t);
|
|
|
|
color *= colorMask;
|
2017-01-21 19:43:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|