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-10-27 14:58:56 +01:00
|
|
|
|
|
|
|
import (
|
2014-12-22 17:26:44 +01:00
|
|
|
"image"
|
2014-12-19 22:18:28 +01:00
|
|
|
"image/color"
|
2016-05-07 21:39:37 +02:00
|
|
|
"runtime"
|
2016-02-06 18:24:35 +01:00
|
|
|
|
2018-03-02 04:20:44 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2017-12-11 15:07:01 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2018-03-02 04:34:56 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphicsutil"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2017-05-02 18:54:25 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/restorable"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2018-02-23 15:58:17 +01:00
|
|
|
// emptyImage is an empty image used for filling other images with a uniform color.
|
|
|
|
//
|
|
|
|
// Do not call Fill or Clear on emptyImage or the program causes infinite recursion.
|
|
|
|
var emptyImage *Image
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
const (
|
|
|
|
w = 16
|
|
|
|
h = 16
|
|
|
|
)
|
|
|
|
emptyImage = newImageWithoutInit(w, h)
|
|
|
|
pix := make([]uint8, w*h*4)
|
|
|
|
_ = emptyImage.ReplacePixels(pix)
|
|
|
|
}
|
|
|
|
|
2017-07-22 22:46:32 +02:00
|
|
|
// Image represents a rectangle set of pixels.
|
|
|
|
// The pixel format is alpha-premultiplied RGBA.
|
2014-12-22 20:10:28 +01:00
|
|
|
// Image implements image.Image.
|
2017-03-03 18:30:10 +01:00
|
|
|
//
|
|
|
|
// Functions of Image never returns error as of 1.5.0-alpha, and error values are always nil.
|
2014-12-22 02:36:42 +01:00
|
|
|
type Image struct {
|
2018-02-25 13:54:35 +01:00
|
|
|
// addr holds self to check copying.
|
|
|
|
// See strings.Builder for similar examples.
|
|
|
|
addr *Image
|
|
|
|
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart *shareableImagePart
|
2018-02-25 13:54:35 +01:00
|
|
|
|
|
|
|
filter Filter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) copyCheck() {
|
|
|
|
if i.addr == nil {
|
|
|
|
// As it is OK that an image is allocated at heap,
|
|
|
|
// 'noespace' function like strings.noescape is not needed.
|
|
|
|
i.addr = i
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if i.addr != i {
|
|
|
|
panic("ebiten: illegal use of non-zero Image copied by value")
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns the size of the image.
|
|
|
|
func (i *Image) Size() (width, height int) {
|
2018-03-10 15:38:27 +01:00
|
|
|
return i.shareableImagePart.Size()
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear resets the pixels of the image into 0.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// When the image is disposed, Clear does nothing.
|
2017-03-03 16:53:49 +01:00
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Clear always returns nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Clear() error {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2018-02-23 15:58:17 +01:00
|
|
|
i.fill(0, 0, 0, 0)
|
2017-03-03 16:53:49 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill fills the image with a solid color.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// When the image is disposed, Fill does nothing.
|
2017-03-03 16:53:49 +01:00
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Fill always returns nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Fill(clr color.Color) error {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2017-07-02 14:06:36 +02:00
|
|
|
r, g, b, a := clr.RGBA()
|
2018-02-23 15:58:17 +01:00
|
|
|
i.fill(uint8(r>>8), uint8(g>>8), uint8(b>>8), uint8(a>>8))
|
2017-03-03 16:53:49 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-02-23 15:58:17 +01:00
|
|
|
func (i *Image) fill(r, g, b, a uint8) {
|
2018-02-24 19:12:33 +01:00
|
|
|
wd, hd := i.Size()
|
|
|
|
ws, hs := emptyImage.Size()
|
|
|
|
sw := float64(wd) / float64(ws)
|
|
|
|
sh := float64(hd) / float64(hs)
|
|
|
|
op := &DrawImageOptions{}
|
|
|
|
op.GeoM.Scale(sw, sh)
|
2018-02-23 15:58:17 +01:00
|
|
|
if a > 0 {
|
|
|
|
rf := float64(r) / float64(a)
|
|
|
|
gf := float64(g) / float64(a)
|
|
|
|
bf := float64(b) / float64(a)
|
|
|
|
af := float64(a) / 0xff
|
2018-02-24 19:12:33 +01:00
|
|
|
op.ColorM.Translate(rf, gf, bf, af)
|
2018-02-23 15:58:17 +01:00
|
|
|
}
|
2018-02-24 19:12:33 +01:00
|
|
|
op.CompositeMode = CompositeModeCopy
|
|
|
|
op.Filter = FilterNearest
|
|
|
|
_ = i.DrawImage(emptyImage, op)
|
2018-02-23 15:58:17 +01:00
|
|
|
}
|
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
func (i *Image) isDisposed() bool {
|
2018-03-10 15:38:27 +01:00
|
|
|
return i.shareableImagePart == nil
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
|
2017-09-30 18:59:34 +02:00
|
|
|
// DrawImage draws the given image on the image i.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-09-30 18:59:34 +02:00
|
|
|
// DrawImage accepts the options. For details, see the document of DrawImageOptions.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-09-30 18:59:34 +02:00
|
|
|
// DrawImage determinines the part to draw, then DrawImage applies the geometry matrix and the color matrix.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-02-27 15:53:21 +01:00
|
|
|
// For drawing, the pixels of the argument image at the time of this call is adopted.
|
|
|
|
// Even if the argument image is mutated after this call,
|
|
|
|
// the drawing result is never affected.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2018-02-26 03:35:55 +01:00
|
|
|
// When the image i is disposed, DrawImage does nothing.
|
|
|
|
// When the given image img is disposed, DrawImage panics.
|
2017-03-03 17:33:43 +01:00
|
|
|
//
|
2017-05-29 17:56:01 +02:00
|
|
|
// When the given image is as same as i, DrawImage panics.
|
2017-03-03 17:33:43 +01:00
|
|
|
//
|
2017-09-23 18:14:16 +02:00
|
|
|
// DrawImage works more efficiently as batches
|
|
|
|
// when the successive calls of DrawImages satisfies the below conditions:
|
|
|
|
//
|
|
|
|
// * All render targets are same (A in A.DrawImage(B, op))
|
|
|
|
// * All render sources are same (B in A.DrawImage(B, op))
|
2018-03-03 19:07:06 +01:00
|
|
|
// * This is not a strong request since different images might share a same inner
|
|
|
|
// OpenGL texture in high possibility. This is not 100%, so using the same render
|
|
|
|
// source is safer.
|
2017-09-23 18:14:16 +02:00
|
|
|
// * All ColorM values are same
|
|
|
|
// * All CompositeMode values are same
|
2018-02-13 18:02:48 +01:00
|
|
|
// * All Filter values are same
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
|
|
|
// For more performance tips, see https://github.com/hajimehoshi/ebiten/wiki/Performance-Tips.
|
|
|
|
//
|
2017-03-03 17:33:43 +01:00
|
|
|
// DrawImage always returns nil as of 1.5.0-alpha.
|
2017-01-17 17:35:21 +01:00
|
|
|
func (i *Image) DrawImage(img *Image, options *DrawImageOptions) error {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2018-02-26 03:35:55 +01:00
|
|
|
if img.isDisposed() {
|
|
|
|
panic("ebiten: the given image to DrawImage must not be disposed")
|
|
|
|
}
|
2018-03-10 15:38:27 +01:00
|
|
|
i.shareableImagePart.ensureNotShared()
|
2018-03-03 13:00:46 +01:00
|
|
|
|
2018-03-03 10:51:52 +01:00
|
|
|
// Compare i and img after ensuring i is not shared, or
|
|
|
|
// i and img might share the same texture even though i != img.
|
2018-03-02 15:59:04 +01:00
|
|
|
if i == img {
|
|
|
|
panic("ebiten: Image.DrawImage: img must be different from the receiver")
|
|
|
|
}
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2017-05-02 20:03:13 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2017-05-02 19:41:44 +02:00
|
|
|
// Calculate vertices before locking because the user can do anything in
|
|
|
|
// options.ImageParts interface without deadlock (e.g. Call Image functions).
|
|
|
|
if options == nil {
|
|
|
|
options = &DrawImageOptions{}
|
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2017-05-02 19:41:44 +02:00
|
|
|
parts := options.ImageParts
|
2017-01-17 17:35:21 +01:00
|
|
|
// Parts is deprecated. This implementations is for backward compatibility.
|
|
|
|
if parts == nil && options.Parts != nil {
|
|
|
|
parts = imageParts(options.Parts)
|
2017-05-02 19:41:44 +02:00
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2017-01-17 17:35:21 +01:00
|
|
|
// ImageParts is deprecated. This implementations is for backward compatibility.
|
|
|
|
if parts != nil {
|
|
|
|
l := parts.Len()
|
|
|
|
for idx := 0; idx < l; idx++ {
|
|
|
|
sx0, sy0, sx1, sy1 := parts.Src(idx)
|
|
|
|
dx0, dy0, dx1, dy1 := parts.Dst(idx)
|
|
|
|
op := &DrawImageOptions{
|
|
|
|
ColorM: options.ColorM,
|
|
|
|
CompositeMode: options.CompositeMode,
|
|
|
|
}
|
|
|
|
r := image.Rect(sx0, sy0, sx1, sy1)
|
|
|
|
op.SourceRect = &r
|
|
|
|
op.GeoM.Scale(
|
|
|
|
float64(dx1-dx0)/float64(sx1-sx0),
|
|
|
|
float64(dy1-dy0)/float64(sy1-sy0))
|
|
|
|
op.GeoM.Translate(float64(dx0), float64(dy0))
|
|
|
|
op.GeoM.Concat(options.GeoM)
|
|
|
|
i.DrawImage(img, op)
|
|
|
|
}
|
2017-05-02 19:41:44 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2018-02-25 18:46:30 +01:00
|
|
|
w, h := img.Size()
|
2017-01-17 17:35:21 +01:00
|
|
|
sx0, sy0, sx1, sy1 := 0, 0, w, h
|
|
|
|
if r := options.SourceRect; r != nil {
|
|
|
|
sx0 = r.Min.X
|
|
|
|
sy0 = r.Min.Y
|
2017-12-13 16:25:35 +01:00
|
|
|
if sx1 > r.Max.X {
|
|
|
|
sx1 = r.Max.X
|
|
|
|
}
|
|
|
|
if sy1 > r.Max.Y {
|
|
|
|
sy1 = r.Max.Y
|
|
|
|
}
|
2017-01-17 17:35:21 +01:00
|
|
|
}
|
2018-03-02 04:20:44 +01:00
|
|
|
geom := options.GeoM.impl
|
|
|
|
if sx0 < 0 || sy0 < 0 {
|
|
|
|
dx := 0.0
|
|
|
|
dy := 0.0
|
|
|
|
if sx0 < 0 {
|
|
|
|
dx = -float64(sx0)
|
|
|
|
sx0 = 0
|
|
|
|
}
|
|
|
|
if sy0 < 0 {
|
|
|
|
dy = -float64(sy0)
|
|
|
|
sy0 = 0
|
|
|
|
}
|
|
|
|
var g *affine.GeoM
|
|
|
|
g = g.Translate(dx, dy)
|
|
|
|
g = g.Concat(geom)
|
|
|
|
geom = g
|
|
|
|
}
|
|
|
|
|
2017-05-02 19:41:44 +02:00
|
|
|
mode := opengl.CompositeMode(options.CompositeMode)
|
2018-02-13 18:02:48 +01:00
|
|
|
|
|
|
|
filter := graphics.FilterNearest
|
|
|
|
if options.Filter != FilterDefault {
|
|
|
|
filter = graphics.Filter(options.Filter)
|
|
|
|
} else if img.filter != FilterDefault {
|
|
|
|
filter = graphics.Filter(img.filter)
|
|
|
|
}
|
|
|
|
|
2018-03-10 15:38:27 +01:00
|
|
|
i.shareableImagePart.DrawImage(img.shareableImagePart, sx0, sy0, sx1, sy1, geom, options.ColorM.impl, mode, filter)
|
2017-03-03 17:33:43 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2018-02-25 18:46:30 +01:00
|
|
|
w, h := i.Size()
|
2016-09-03 18:25:02 +02:00
|
|
|
return image.Rect(0, 0, w, h)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
|
|
|
func (i *Image) ColorModel() color.Model {
|
2016-05-16 18:06:30 +02:00
|
|
|
return color.RGBAModel
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// At returns the color of the image at (x, y).
|
|
|
|
//
|
2017-09-30 18:59:34 +02:00
|
|
|
// At loads pixels from GPU to system memory if necessary, which means that At can be slow.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2018-03-03 10:51:52 +01:00
|
|
|
// At always returns a transparent color if the image is disposed.
|
2017-09-30 18:59:34 +02:00
|
|
|
//
|
|
|
|
// At can't be called before the main loop (ebiten.Run) starts (as of version 1.4.0-alpha).
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2018-03-03 10:51:52 +01:00
|
|
|
return color.RGBA{}
|
2017-05-02 19:41:44 +02:00
|
|
|
}
|
2018-03-10 15:38:27 +01:00
|
|
|
clr, err := i.shareableImagePart.At(x, y)
|
2018-03-10 15:14:59 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return clr
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 18:59:34 +02:00
|
|
|
// Dispose disposes the image data. After disposing, most of image functions do nothing and returns meaningless values.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-09-30 18:59:34 +02:00
|
|
|
// Dispose is useful to save memory.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-03-03 18:23:39 +01:00
|
|
|
// When the image is disposed, Dipose does nothing.
|
|
|
|
//
|
|
|
|
// Dipose always return nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Dispose() error {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2016-07-12 19:07:35 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-03-10 15:38:27 +01:00
|
|
|
i.shareableImagePart.Dispose()
|
|
|
|
i.shareableImagePart = nil
|
2017-05-03 16:15:03 +02:00
|
|
|
runtime.SetFinalizer(i, nil)
|
2017-03-03 18:23:39 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReplacePixels replaces the pixels of the image with p.
|
|
|
|
//
|
|
|
|
// The given p must represent RGBA pre-multiplied alpha values. len(p) must equal to 4 * (image width) * (image height).
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D).
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-10-01 10:24:30 +02:00
|
|
|
// When len(p) is not appropriate, ReplacePixels panics.
|
2017-03-03 18:23:39 +01:00
|
|
|
//
|
|
|
|
// When the image is disposed, ReplacePixels does nothing.
|
|
|
|
//
|
|
|
|
// ReplacePixels always returns nil as of 1.5.0-alpha.
|
2018-01-28 14:40:36 +01:00
|
|
|
func (i *Image) ReplacePixels(p []byte) error {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2017-05-02 20:03:13 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-03-10 15:38:27 +01:00
|
|
|
i.shareableImagePart.ReplacePixels(p)
|
2017-03-03 18:23:39 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2014-12-28 16:21:40 +01:00
|
|
|
// A DrawImageOptions represents options to render an image on an image.
|
2014-12-25 17:39:32 +01:00
|
|
|
type DrawImageOptions struct {
|
2017-09-30 18:59:34 +02:00
|
|
|
// SourceRect is the region of the source image to draw.
|
|
|
|
// If SourceRect is nil, whole image is used.
|
2017-12-16 10:35:25 +01:00
|
|
|
//
|
|
|
|
// It is assured that texels out of the SourceRect are never used.
|
2017-09-30 18:59:34 +02:00
|
|
|
SourceRect *image.Rectangle
|
|
|
|
|
|
|
|
// GeoM is a geometry matrix to draw.
|
|
|
|
// The default (zero) value is identify, which draws the image at (0, 0).
|
|
|
|
GeoM GeoM
|
|
|
|
|
|
|
|
// ColorM is a color matrix to draw.
|
|
|
|
// The default (zero) value is identity, which doesn't change any color.
|
|
|
|
ColorM ColorM
|
|
|
|
|
|
|
|
// CompositeMode is a composite mode to draw.
|
|
|
|
// The default (zero) value is regular alpha blending.
|
2016-02-29 18:16:32 +01:00
|
|
|
CompositeMode CompositeMode
|
2015-01-04 16:42:20 +01:00
|
|
|
|
2018-02-13 18:02:48 +01:00
|
|
|
// Filter is a type of texture filter.
|
|
|
|
// The default (zero) value is FilterDefault.
|
|
|
|
//
|
2018-02-13 19:07:17 +01:00
|
|
|
// Filter can also be specified at NewImage* functions, but
|
|
|
|
// specifying filter at DrawImageOptions is recommended (as of 1.7.0-alpha).
|
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// If both Filter specified at NewImage* and DrawImageOptions are FilterDefault,
|
|
|
|
// FilterNearest is used.
|
|
|
|
// If either is FilterDefault and the other is not, the latter is used.
|
|
|
|
// Otherwise, Filter specified at DrawImageOptions is used.
|
|
|
|
Filter Filter
|
|
|
|
|
2017-09-23 11:15:31 +02:00
|
|
|
// Deprecated (as of 1.5.0-alpha): Use SourceRect instead.
|
2017-01-17 17:35:21 +01:00
|
|
|
ImageParts ImageParts
|
|
|
|
|
2017-09-23 11:15:31 +02:00
|
|
|
// Deprecated (as of 1.1.0-alpha): Use SourceRect instead.
|
2015-01-04 16:42:20 +01:00
|
|
|
Parts []ImagePart
|
2014-12-24 14:46:00 +01:00
|
|
|
}
|
2016-02-05 15:20:41 +01:00
|
|
|
|
|
|
|
// NewImage returns an empty image.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// If width or height is less than 1 or more than MaxImageSize, NewImage panics.
|
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// filter argument is just for backward compatibility.
|
|
|
|
// If you are not sure, specify FilterDefault.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Error returned by NewImage is always nil as of 1.5.0-alpha.
|
2016-02-05 15:20:41 +01:00
|
|
|
func NewImage(width, height int, filter Filter) (*Image, error) {
|
2018-03-03 13:00:46 +01:00
|
|
|
s := newSharedImagePart(width, height)
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart: s,
|
|
|
|
filter: filter,
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-02-23 15:58:17 +01:00
|
|
|
i.fill(0, 0, 0, 0)
|
2017-05-03 16:11:43 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
|
|
|
return i, nil
|
2016-07-04 20:40:40 +02:00
|
|
|
}
|
|
|
|
|
2018-02-23 15:58:17 +01:00
|
|
|
// newImageWithoutInit creates an empty image without initialization.
|
|
|
|
func newImageWithoutInit(width, height int) *Image {
|
2018-03-03 13:00:46 +01:00
|
|
|
s := newSharedImagePart(width, height)
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart: s,
|
|
|
|
filter: FilterDefault,
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-02-23 15:58:17 +01:00
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2016-07-11 18:58:04 +02:00
|
|
|
// newVolatileImage returns an empty 'volatile' image.
|
2016-07-05 18:30:49 +02:00
|
|
|
// A volatile image is always cleared at the start of a frame.
|
2016-07-04 20:40:40 +02:00
|
|
|
//
|
2016-07-05 04:40:23 +02:00
|
|
|
// This is suitable for offscreen images that pixels are changed often.
|
2016-07-04 20:40:40 +02:00
|
|
|
//
|
2016-07-05 04:40:23 +02:00
|
|
|
// Pixels in regular non-volatile images are saved at each end of a frame if the image
|
|
|
|
// is changed, and restored automatically from the saved pixels on GL context lost.
|
2016-07-05 18:30:49 +02:00
|
|
|
// On the other hand, pixels in volatile images are not saved.
|
2016-07-04 20:40:40 +02:00
|
|
|
// Saving pixels is an expensive operation, and it is desirable to avoid it if possible.
|
|
|
|
//
|
2017-05-29 20:31:29 +02:00
|
|
|
// Note that volatile images are internal only and will never be source of drawing.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// If width or height is less than 1 or more than MaxImageSize, newVolatileImage panics.
|
|
|
|
//
|
|
|
|
// Error returned by newVolatileImage is always nil as of 1.5.0-alpha.
|
2017-05-31 03:47:52 +02:00
|
|
|
func newVolatileImage(width, height int, filter Filter) *Image {
|
2018-02-13 18:02:48 +01:00
|
|
|
r := restorable.NewImage(width, height, true)
|
2018-02-25 13:54:35 +01:00
|
|
|
i := &Image{
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart: &shareableImagePart{
|
|
|
|
shareableImage: &shareableImage{
|
2018-03-10 15:14:59 +01:00
|
|
|
restorable: r,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
filter: filter,
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-02-23 15:58:17 +01:00
|
|
|
i.fill(0, 0, 0, 0)
|
2017-05-03 16:11:43 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
2017-05-31 03:47:52 +02:00
|
|
|
return i
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
|
|
|
|
2016-05-16 18:38:31 +02:00
|
|
|
// NewImageFromImage creates a new image with the given image (source).
|
2016-02-05 15:20:41 +01:00
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// If source's width or height is less than 1 or more than MaxImageSize, NewImageFromImage panics.
|
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// filter argument is just for backward compatibility.
|
|
|
|
// If you are not sure, specify FilterDefault.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Error returned by NewImageFromImage is always nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func NewImageFromImage(source image.Image, filter Filter) (*Image, error) {
|
2017-03-03 17:22:51 +01:00
|
|
|
size := source.Bounds().Size()
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2018-02-25 15:13:06 +01:00
|
|
|
width, height := size.X, size.Y
|
2018-03-03 10:51:52 +01:00
|
|
|
|
|
|
|
s := newSharedImagePart(width, height)
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart: s,
|
|
|
|
filter: filter,
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
|
|
|
|
2018-03-08 15:59:37 +01:00
|
|
|
_ = i.ReplacePixels(graphicsutil.CopyImage(source))
|
2017-05-03 16:11:43 +02:00
|
|
|
return i, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-15 14:08:39 +02:00
|
|
|
|
2018-02-28 14:46:57 +01:00
|
|
|
func newImageWithScreenFramebuffer(width, height int) *Image {
|
|
|
|
r := restorable.NewScreenFramebufferImage(width, height)
|
2018-02-25 13:54:35 +01:00
|
|
|
i := &Image{
|
2018-03-10 15:38:27 +01:00
|
|
|
shareableImagePart: &shareableImagePart{
|
|
|
|
shareableImage: &shareableImage{
|
2018-03-10 15:14:59 +01:00
|
|
|
restorable: r,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
filter: FilterDefault,
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2017-05-03 16:11:43 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
2017-05-31 03:47:52 +02:00
|
|
|
return i
|
2016-05-15 14:08:39 +02:00
|
|
|
}
|
2017-03-03 17:22:51 +01:00
|
|
|
|
2018-03-09 03:03:55 +01:00
|
|
|
// MaxImageSize is deprecated as of 1.7.0-alpha. No replacement so far.
|
|
|
|
//
|
|
|
|
// TODO: Make this replacement (#541)
|
|
|
|
var MaxImageSize = 4096
|