2014-05-01 14:42:57 +02:00
|
|
|
package opengl
|
2013-10-27 11:54:28 +01:00
|
|
|
|
|
|
|
import (
|
2014-01-08 08:38:03 +01:00
|
|
|
"fmt"
|
2014-12-06 07:47:48 +01:00
|
|
|
"github.com/go-gl/gl"
|
2014-12-05 14:16:58 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/graphics"
|
2013-10-27 11:54:28 +01:00
|
|
|
)
|
|
|
|
|
2014-01-08 06:37:07 +01:00
|
|
|
type RenderTarget struct {
|
2014-12-06 07:47:48 +01:00
|
|
|
framebuffer gl.Framebuffer
|
2014-01-08 10:03:21 +01:00
|
|
|
width int
|
|
|
|
height int
|
2014-01-10 13:28:50 +01:00
|
|
|
flipY bool
|
2013-10-27 11:54:28 +01:00
|
|
|
}
|
|
|
|
|
2014-12-06 07:47:48 +01:00
|
|
|
func createFramebuffer(nativeTexture gl.Texture) gl.Framebuffer {
|
|
|
|
framebuffer := gl.GenFramebuffer()
|
|
|
|
framebuffer.Bind()
|
2014-01-08 10:47:38 +01:00
|
|
|
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.FramebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0,
|
|
|
|
gl.TEXTURE_2D, nativeTexture, 0)
|
|
|
|
if gl.CheckFramebufferStatus(gl.FRAMEBUFFER) != gl.FRAMEBUFFER_COMPLETE {
|
2014-01-08 10:47:38 +01:00
|
|
|
panic("creating framebuffer failed")
|
2013-10-27 11:54:28 +01:00
|
|
|
}
|
2014-01-08 10:47:38 +01:00
|
|
|
|
|
|
|
// Set this framebuffer opaque because alpha values on a target might be
|
|
|
|
// confusing.
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.ClearColor(0, 0, 0, 1)
|
|
|
|
gl.Clear(gl.COLOR_BUFFER_BIT)
|
2014-01-08 10:47:38 +01:00
|
|
|
|
|
|
|
return framebuffer
|
2013-10-27 11:54:28 +01:00
|
|
|
}
|
|
|
|
|
2014-01-10 13:28:50 +01:00
|
|
|
func (r *RenderTarget) setAsViewport() {
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.Flush()
|
|
|
|
r.framebuffer.Bind()
|
|
|
|
err := gl.CheckFramebufferStatus(gl.FRAMEBUFFER)
|
|
|
|
if err != gl.FRAMEBUFFER_COMPLETE {
|
2014-01-08 08:38:03 +01:00
|
|
|
panic(fmt.Sprintf("glBindFramebuffer failed: %d", err))
|
|
|
|
}
|
|
|
|
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.BlendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ZERO, gl.ONE)
|
2014-01-08 08:38:03 +01:00
|
|
|
|
|
|
|
width := graphics.AdjustSizeForTexture(r.width)
|
|
|
|
height := graphics.AdjustSizeForTexture(r.height)
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.Viewport(0, 0, width, height)
|
2014-01-08 08:38:03 +01:00
|
|
|
}
|
|
|
|
|
2014-01-11 01:03:00 +01:00
|
|
|
func (r *RenderTarget) projectionMatrix() [4][4]float64 {
|
2014-01-08 08:38:03 +01:00
|
|
|
width := graphics.AdjustSizeForTexture(r.width)
|
|
|
|
height := graphics.AdjustSizeForTexture(r.height)
|
2014-01-10 13:28:50 +01:00
|
|
|
matrix := graphics.OrthoProjectionMatrix(0, width, 0, height)
|
|
|
|
if r.flipY {
|
|
|
|
matrix[1][1] *= -1
|
|
|
|
matrix[1][3] += float64(r.height) /
|
|
|
|
float64(graphics.AdjustSizeForTexture(r.height)) * 2
|
|
|
|
}
|
|
|
|
return matrix
|
2014-01-08 08:38:03 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 17:06:20 +02:00
|
|
|
func (r *RenderTarget) dispose() {
|
2014-12-06 07:47:48 +01:00
|
|
|
r.framebuffer.Delete()
|
2014-01-07 13:58:46 +01:00
|
|
|
}
|