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-14 07:26:10 +01:00
|
|
|
package ebiten
|
2013-12-09 14:40:54 +01:00
|
|
|
|
2014-05-03 20:29:45 +02:00
|
|
|
import (
|
2014-12-30 18:55:17 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2014-12-31 06:57:51 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2014-05-03 20:29:45 +02:00
|
|
|
)
|
2014-05-03 17:40:53 +02:00
|
|
|
|
2014-12-31 06:57:51 +01:00
|
|
|
func newGraphicsContext(c *opengl.Context, screenWidth, screenHeight, screenScale int) (*graphicsContext, error) {
|
2014-12-31 07:22:15 +01:00
|
|
|
f, err := graphics.NewZeroFramebuffer(c, screenWidth*screenScale, screenHeight*screenScale)
|
2014-12-19 21:22:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-12-09 14:40:54 +01:00
|
|
|
|
2014-12-31 06:57:51 +01:00
|
|
|
texture, err := graphics.NewTexture(c, screenWidth, screenHeight, c.Nearest)
|
2013-12-09 14:40:54 +01:00
|
|
|
if err != nil {
|
2014-12-07 20:22:50 +01:00
|
|
|
return nil, err
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
2014-12-31 07:22:15 +01:00
|
|
|
screen, err := newInnerImage(c, texture)
|
2014-12-22 02:36:42 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-12-31 06:57:51 +01:00
|
|
|
gc := &graphicsContext{
|
2014-12-22 16:01:22 +01:00
|
|
|
defaultR: &innerImage{f, nil},
|
2014-12-20 12:54:14 +01:00
|
|
|
screen: screen,
|
|
|
|
screenScale: screenScale,
|
2014-12-14 13:21:05 +01:00
|
|
|
}
|
2014-12-31 06:57:51 +01:00
|
|
|
return gc, nil
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
type graphicsContext struct {
|
2014-12-22 02:36:42 +01:00
|
|
|
screen *innerImage
|
|
|
|
defaultR *innerImage
|
2014-12-20 12:54:14 +01:00
|
|
|
screenScale int
|
2014-12-07 16:07:36 +01:00
|
|
|
}
|
2014-01-11 03:18:55 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
func (c *graphicsContext) dispose() {
|
2014-12-07 16:07:36 +01:00
|
|
|
// NOTE: Now this method is not used anywhere.
|
2014-12-22 16:01:22 +01:00
|
|
|
framebuffer := c.screen.framebuffer
|
|
|
|
texture := c.screen.texture
|
2014-12-17 14:50:44 +01:00
|
|
|
|
2014-12-22 16:01:22 +01:00
|
|
|
framebuffer.Dispose()
|
|
|
|
texture.Dispose()
|
2013-12-09 15:52:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-20 12:54:14 +01:00
|
|
|
func (c *graphicsContext) preUpdate() error {
|
|
|
|
return c.screen.Clear()
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-20 12:54:14 +01:00
|
|
|
func (c *graphicsContext) postUpdate() error {
|
2014-12-22 18:34:45 +01:00
|
|
|
if err := c.defaultR.Clear(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-12-07 16:07:36 +01:00
|
|
|
scale := float64(c.screenScale)
|
2014-12-26 12:44:15 +01:00
|
|
|
options := &DrawImageOptions{
|
2014-12-26 14:50:02 +01:00
|
|
|
GeoM: ScaleGeo(scale, scale),
|
2014-12-24 14:46:00 +01:00
|
|
|
}
|
2014-12-26 12:44:15 +01:00
|
|
|
if err := c.defaultR.drawImage(c.screen, options); err != nil {
|
2014-12-20 12:54:14 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2014-12-07 16:07:36 +01:00
|
|
|
}
|