2013-06-19 01:49:54 +02:00
|
|
|
package opengl
|
2013-06-15 10:07:14 +02:00
|
|
|
|
2013-06-18 17:48:41 +02:00
|
|
|
import (
|
2013-10-14 04:34:58 +02:00
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics/matrix"
|
2013-06-18 17:48:41 +02:00
|
|
|
)
|
2013-06-15 10:07:14 +02:00
|
|
|
|
2013-06-17 16:10:55 +02:00
|
|
|
type Device struct {
|
2013-11-22 18:56:18 +01:00
|
|
|
context *Context
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
2013-10-05 18:47:19 +02:00
|
|
|
func NewDevice(screenWidth, screenHeight, screenScale int) *Device {
|
2013-11-22 18:56:18 +01:00
|
|
|
context := newContext(screenWidth, screenHeight, screenScale)
|
2013-11-20 16:05:57 +01:00
|
|
|
return &Device{
|
2013-11-22 18:56:18 +01:00
|
|
|
context: context,
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
2013-10-05 18:47:19 +02:00
|
|
|
}
|
|
|
|
|
2013-10-06 11:22:45 +02:00
|
|
|
func (device *Device) Update(draw func(graphics.Context)) {
|
2013-07-04 17:49:17 +02:00
|
|
|
context := device.context
|
2013-10-16 16:06:35 +02:00
|
|
|
context.ResetOffscreen()
|
2013-07-04 17:49:17 +02:00
|
|
|
context.Clear()
|
2013-06-25 17:56:01 +02:00
|
|
|
|
2013-10-06 11:22:45 +02:00
|
|
|
draw(context)
|
2013-06-25 17:56:01 +02:00
|
|
|
|
2013-07-04 17:49:17 +02:00
|
|
|
context.flush()
|
2013-10-17 17:45:12 +02:00
|
|
|
context.setMainFramebufferOffscreen()
|
2013-07-04 17:49:17 +02:00
|
|
|
context.Clear()
|
2013-06-20 18:47:39 +02:00
|
|
|
|
2013-07-04 17:49:17 +02:00
|
|
|
scale := float64(context.screenScale)
|
2013-10-27 15:11:26 +01:00
|
|
|
geometryMatrix := matrix.IdentityGeometry()
|
|
|
|
geometryMatrix.Scale(scale, scale)
|
2013-10-19 18:52:18 +02:00
|
|
|
context.DrawTexture(context.ToTexture(context.screenId),
|
2013-06-20 18:47:39 +02:00
|
|
|
geometryMatrix, matrix.IdentityColor())
|
2013-07-04 17:49:17 +02:00
|
|
|
context.flush()
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
2013-06-19 16:08:24 +02:00
|
|
|
|
|
|
|
func (device *Device) TextureFactory() graphics.TextureFactory {
|
2013-06-27 17:33:03 +02:00
|
|
|
return device.context
|
2013-06-19 16:08:24 +02:00
|
|
|
}
|