2014-12-09 15:16:04 +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 14:09:22 +01:00
|
|
|
package ebiten
|
2013-12-02 13:45:10 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
|
|
|
)
|
|
|
|
|
2014-12-07 17:07:39 +01:00
|
|
|
// A Rect represents a rectangle.
|
2014-05-02 17:06:20 +02:00
|
|
|
type Rect struct {
|
2014-12-18 12:48:36 +01:00
|
|
|
X float64
|
|
|
|
Y float64
|
|
|
|
Width float64
|
|
|
|
Height float64
|
2014-05-02 17:06:20 +02:00
|
|
|
}
|
|
|
|
|
2014-12-20 18:42:55 +01:00
|
|
|
// An ImagePart represents a part of an image.
|
|
|
|
type ImagePart struct {
|
2014-12-18 12:04:40 +01:00
|
|
|
Dst Rect
|
|
|
|
Src Rect
|
2014-05-02 17:06:20 +02:00
|
|
|
}
|
|
|
|
|
2014-12-20 18:42:55 +01:00
|
|
|
// DrawWholeImage draws the whole image.
|
2014-12-20 18:22:10 +01:00
|
|
|
func DrawWholeImage(r *RenderTarget, texture *Texture, geo GeometryMatrix, color ColorMatrix) error {
|
2014-12-17 15:06:14 +01:00
|
|
|
w, h := texture.Size()
|
2014-12-20 18:42:55 +01:00
|
|
|
parts := []ImagePart{
|
2014-12-18 12:48:36 +01:00
|
|
|
{Rect{0, 0, float64(w), float64(h)}, Rect{0, 0, float64(w), float64(h)}},
|
2014-05-03 06:58:18 +02:00
|
|
|
}
|
2014-12-20 18:22:10 +01:00
|
|
|
return r.DrawImage(texture, parts, geo, color)
|
2013-12-02 13:45:10 +01:00
|
|
|
}
|
2014-12-10 17:06:38 +01:00
|
|
|
|
2014-12-18 14:24:27 +01:00
|
|
|
// Filter represents the type of filter to be used when a texture is maginified or minified.
|
2014-12-10 17:06:38 +01:00
|
|
|
type Filter int
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Filters
|
2014-12-10 17:06:38 +01:00
|
|
|
const (
|
|
|
|
FilterNearest Filter = iota
|
|
|
|
FilterLinear
|
|
|
|
)
|
|
|
|
|
2014-12-17 14:04:33 +01:00
|
|
|
// Texture represents a texture.
|
2014-12-17 13:49:28 +01:00
|
|
|
type Texture struct {
|
2014-12-17 14:12:32 +01:00
|
|
|
glTexture *opengl.Texture
|
2014-12-17 13:49:28 +01:00
|
|
|
}
|
|
|
|
|
2014-12-17 14:50:44 +01:00
|
|
|
// Size returns the size of the texture.
|
|
|
|
func (t *Texture) Size() (width int, height int) {
|
2014-12-20 17:04:49 +01:00
|
|
|
return t.glTexture.Size()
|
2014-12-17 14:50:44 +01:00
|
|
|
}
|