2014-12-24 03:04:10 +01:00
|
|
|
// 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
|
|
|
|
2014-12-30 18:55:17 +01:00
|
|
|
package graphics
|
2013-10-27 11:54:28 +01:00
|
|
|
|
|
|
|
import (
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2013-10-27 11:54:28 +01:00
|
|
|
)
|
|
|
|
|
2016-10-28 22:02:22 +02:00
|
|
|
func orthoProjectionMatrix(left, right, bottom, top int) []float32 {
|
|
|
|
e11 := 2 / float32(right-left)
|
|
|
|
e22 := 2 / float32(top-bottom)
|
|
|
|
e14 := -1 * float32(right+left) / float32(right-left)
|
|
|
|
e24 := -1 * float32(top+bottom) / float32(top-bottom)
|
2014-12-07 11:25:49 +01:00
|
|
|
|
2016-10-28 22:02:22 +02:00
|
|
|
return []float32{
|
|
|
|
e11, 0, 0, 0,
|
|
|
|
0, e22, 0, 0,
|
|
|
|
0, 0, 1, 0,
|
|
|
|
e14, e24, 0, 1,
|
2014-12-07 11:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-11 18:41:50 +02:00
|
|
|
type framebuffer struct {
|
2015-02-16 02:33:27 +01:00
|
|
|
native opengl.Framebuffer
|
|
|
|
flipY bool
|
2016-10-28 22:02:22 +02:00
|
|
|
proMatrix []float32
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-06-12 15:44:23 +02:00
|
|
|
func newFramebufferFromTexture(context *opengl.Context, texture *texture) (*framebuffer, error) {
|
2016-06-11 17:23:26 +02:00
|
|
|
native, err := context.NewFramebuffer(opengl.Texture(texture.native))
|
2014-12-14 13:38:54 +01:00
|
|
|
if err != nil {
|
2016-06-12 15:44:23 +02:00
|
|
|
return nil, err
|
2014-12-14 13:38:54 +01:00
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
return &framebuffer{
|
|
|
|
native: native,
|
|
|
|
}, nil
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-06-05 18:49:34 +02:00
|
|
|
const viewportSize = 4096
|
|
|
|
|
2016-06-17 23:25:40 +02:00
|
|
|
func (f *framebuffer) setAsViewport(context *opengl.Context) error {
|
2016-06-05 18:49:34 +02:00
|
|
|
width := viewportSize
|
|
|
|
height := viewportSize
|
2016-06-17 23:25:40 +02:00
|
|
|
return context.SetViewport(f.native, width, height)
|
2014-01-08 08:38:03 +01:00
|
|
|
}
|
|
|
|
|
2016-10-28 22:02:22 +02:00
|
|
|
func (f *framebuffer) projectionMatrix(height int) []float32 {
|
2015-02-16 02:33:27 +01:00
|
|
|
if f.proMatrix != nil {
|
|
|
|
return f.proMatrix
|
|
|
|
}
|
2016-07-04 17:29:46 +02:00
|
|
|
m := orthoProjectionMatrix(0, viewportSize, 0, viewportSize)
|
2014-12-22 16:01:22 +01:00
|
|
|
if f.flipY {
|
2016-10-28 22:02:22 +02:00
|
|
|
m[4*1+1] *= -1
|
|
|
|
m[4*3+1] += float32(height) / float32(viewportSize) * 2
|
2014-01-10 13:28:50 +01:00
|
|
|
}
|
2015-02-16 02:33:27 +01:00
|
|
|
f.proMatrix = m
|
|
|
|
return f.proMatrix
|
2014-01-07 13:58:46 +01:00
|
|
|
}
|