ebiten/image.go

775 lines
21 KiB
Go
Raw Normal View History

// 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
package ebiten
2013-10-27 14:58:56 +01:00
import (
"fmt"
"image"
"image/color"
"math"
"runtime"
"github.com/hajimehoshi/ebiten/internal/graphics"
2018-03-10 15:48:10 +01:00
"github.com/hajimehoshi/ebiten/internal/shareable"
2013-10-27 14:58:56 +01:00
)
type mipmap struct {
orig *shareable.Image
imgs map[image.Rectangle][]*shareable.Image
}
func newMipmap(s *shareable.Image) *mipmap {
return &mipmap{
orig: s,
imgs: map[image.Rectangle][]*shareable.Image{},
}
}
2018-10-24 19:11:54 +02:00
func (m *mipmap) original() *shareable.Image {
return m.orig
2018-10-24 19:11:54 +02:00
}
func (m *mipmap) level(r image.Rectangle, level int) *shareable.Image {
if level == 0 {
2018-10-27 18:39:12 +02:00
panic("not reached")
}
imgs, ok := m.imgs[r]
if !ok {
imgs = []*shareable.Image{}
m.imgs[r] = imgs
}
idx := level - 1
size := r.Size()
w, h := size.X, size.Y
if len(imgs) > 0 {
w, h = imgs[len(imgs)-1].Size()
}
for len(imgs) < idx+1 {
w2 := w / 2
h2 := h / 2
if w2 == 0 || h2 == 0 {
return nil
}
var s *shareable.Image
if m.orig.IsVolatile() {
s = shareable.NewVolatileImage(w2, h2)
} else {
s = shareable.NewImage(w2, h2)
}
2018-10-28 11:35:01 +01:00
var src *shareable.Image
var vs []float32
2018-10-28 11:35:01 +01:00
if l := len(imgs); l == 0 {
src = m.orig
vs = src.QuadVertices(r.Min.X, r.Min.Y, r.Max.X, r.Max.Y, 0.5, 0, 0, 0.5, 0, 0, 1, 1, 1, 1)
} else {
2018-10-28 11:35:01 +01:00
src = m.level(r, l)
vs = src.QuadVertices(0, 0, w, h, 0.5, 0, 0, 0.5, 0, 0, 1, 1, 1, 1)
}
2018-10-28 15:03:06 +01:00
is := graphics.QuadIndices()
s.DrawImage(src, vs, is, nil, graphics.CompositeModeCopy, graphics.FilterLinear, graphics.AddressClampToZero)
imgs = append(imgs, s)
w = w2
h = h2
}
m.imgs[r] = imgs
if len(imgs) <= idx {
return nil
}
return imgs[idx]
}
func (m *mipmap) isDisposed() bool {
return m.orig == nil
}
func (m *mipmap) dispose() {
m.disposeMipmaps()
m.orig.Dispose()
m.orig = nil
}
func (m *mipmap) disposeMipmaps() {
for _, a := range m.imgs {
for _, img := range a {
img.Dispose()
}
}
m.imgs = map[image.Rectangle][]*shareable.Image{}
}
2017-07-22 22:46:32 +02:00
// Image represents a rectangle set of pixels.
// The pixel format is alpha-premultiplied RGBA.
2019-01-13 16:39:37 +01:00
// Image implements image.Image and draw.Image.
//
// Functions of Image never returns error as of 1.5.0-alpha, and error values are always nil.
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
// mipmap is a set of shareable.Image sorted by the order of mipmap level.
2018-07-29 17:02:03 +02:00
// The level 0 image is a regular image and higher-level images are used for mipmap.
mipmap *mipmap
2018-02-25 13:54:35 +01:00
bounds *image.Rectangle
original *Image
2019-01-13 20:07:26 +01:00
pixelsToSet []byte
2019-01-13 16:39:37 +01:00
2018-02-25 13:54:35 +01:00
filter Filter
}
func (i *Image) copyCheck() {
if i.addr != i {
panic("ebiten: illegal use of non-zero Image copied by value")
}
}
// Size returns the size of the image.
func (i *Image) Size() (width, height int) {
s := i.Bounds().Size()
return s.X, s.Y
}
func (i *Image) isDisposed() bool {
return i.mipmap.isDisposed()
}
func (i *Image) isSubimage() bool {
return i.bounds != nil
}
// Clear resets the pixels of the image into 0.
//
// When the image is disposed, Clear does nothing.
//
// Clear always returns nil as of 1.5.0-alpha.
func (i *Image) Clear() error {
2019-01-12 16:56:33 +01:00
i.Fill(color.Transparent)
return nil
}
// Fill fills the image with a solid color.
//
// When the image is disposed, Fill does nothing.
//
// Fill always returns nil as of 1.5.0-alpha.
func (i *Image) Fill(clr color.Color) error {
2018-02-25 13:54:35 +01:00
i.copyCheck()
if i.isDisposed() {
return nil
}
// TODO: Implement this.
if i.isSubimage() {
panic("render to a subimage is not implemented")
}
2019-01-13 16:39:37 +01:00
i.resolvePixelsToSet(false)
2019-01-12 16:56:33 +01:00
r16, g16, b16, a16 := clr.RGBA()
r, g, b, a := uint8(r16>>8), uint8(g16>>8), uint8(b16>>8), uint8(a16>>8)
i.mipmap.original().Fill(r, g, b, a)
i.disposeMipmaps()
2019-01-12 16:56:33 +01:00
return nil
}
func (i *Image) disposeMipmaps() {
if i.isDisposed() {
panic("not reached")
}
i.mipmap.disposeMipmaps()
}
2017-09-30 18:59:34 +02:00
// DrawImage draws the given image on the image i.
//
2017-09-30 18:59:34 +02:00
// DrawImage accepts the options. For details, see the document of DrawImageOptions.
//
2018-10-08 20:19:27 +02:00
// DrawImage determines the part to draw, then DrawImage applies the geometry matrix and the color matrix.
//
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.
//
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.
//
// When the given image is as same as i, DrawImage panics.
//
// 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.
// * All ColorM values are same, or all the ColorM have only 'scale' operations
// * All CompositeMode values are same
// * All Filter values are same
//
// For more performance tips, see https://github.com/hajimehoshi/ebiten/wiki/Performance-Tips.
//
// DrawImage always returns nil as of 1.5.0-alpha.
func (i *Image) DrawImage(img *Image, options *DrawImageOptions) error {
i.drawImage(img, options)
return nil
}
func (i *Image) drawImage(img *Image, options *DrawImageOptions) {
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")
}
if i.isDisposed() {
return
}
// TODO: Implement this.
if i.isSubimage() {
panic("render to a subimage is not implemented")
}
2019-01-13 16:39:37 +01:00
img.resolvePixelsToSet(true)
i.resolvePixelsToSet(true)
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
// 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
// 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,
}
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.SubImage(image.Rect(sx0, sy0, sx1, sy1)).(*Image), op)
}
return
2017-05-02 19:41:44 +02:00
}
2017-12-13 16:25:35 +01:00
bounds := img.Bounds()
// SourceRect is deprecated. This implementation is for backward compatibility.
if options.SourceRect != nil {
2018-11-08 17:39:49 +01:00
bounds = bounds.Intersect(*options.SourceRect)
if bounds.Empty() {
return
}
}
geom := &options.GeoM
2018-10-28 12:42:57 +01:00
mode := graphics.CompositeMode(options.CompositeMode)
filter := graphics.FilterNearest
if options.Filter != FilterDefault {
filter = graphics.Filter(options.Filter)
} else if img.filter != FilterDefault {
filter = graphics.Filter(img.filter)
}
a, b, c, d, tx, ty := geom.elements()
2018-07-30 18:45:42 +02:00
level := 0
if filter == graphics.FilterLinear {
2018-07-30 18:45:42 +02:00
det := geom.det()
if det == 0 {
return
2018-07-30 18:45:42 +02:00
}
2018-07-30 18:56:59 +02:00
if math.IsNaN(float64(det)) {
return
2018-07-30 18:45:42 +02:00
}
2018-10-28 15:03:06 +01:00
level = graphics.MipmapLevel(det)
2018-07-30 18:45:42 +02:00
if level < 0 {
panic("not reached")
}
}
if level > 6 {
level = 6
}
2018-10-27 18:39:12 +02:00
// TODO: Add (*mipmap).drawImage and move the below code.
colorm := options.ColorM.impl
cr, cg, cb, ca := float32(1), float32(1), float32(1), float32(1)
if colorm.ScaleOnly() {
body, _ := colorm.UnsafeElements()
cr = body[0]
cg = body[5]
cb = body[10]
ca = body[15]
colorm = nil
}
2018-10-27 18:39:12 +02:00
if level == 0 {
src := img.mipmap.original()
2018-11-08 17:39:49 +01:00
vs := src.QuadVertices(bounds.Min.X, bounds.Min.Y, bounds.Max.X, bounds.Max.Y, a, b, c, d, tx, ty, cr, cg, cb, ca)
2018-10-28 15:03:06 +01:00
is := graphics.QuadIndices()
i.mipmap.original().DrawImage(src, vs, is, colorm, mode, filter, graphics.AddressClampToZero)
2018-11-08 17:39:49 +01:00
} else if src := img.mipmap.level(bounds, level); src != nil {
2018-10-27 18:39:12 +02:00
w, h := src.Size()
s := 1 << uint(level)
a *= float32(s)
b *= float32(s)
c *= float32(s)
d *= float32(s)
vs := src.QuadVertices(0, 0, w, h, a, b, c, d, tx, ty, cr, cg, cb, ca)
2018-10-28 15:03:06 +01:00
is := graphics.QuadIndices()
i.mipmap.original().DrawImage(src, vs, is, colorm, mode, filter, graphics.AddressClampToZero)
}
i.disposeMipmaps()
}
2018-06-12 03:33:09 +02:00
// Vertex represents a vertex passed to DrawTriangles.
//
// Note that this API is experimental.
type Vertex struct {
// DstX and DstY represents a point on a destination image.
DstX float32
DstY float32
// SrcX and SrcY represents a point on a source image.
2018-12-22 22:14:05 +01:00
// Be careful that SrcX/SrcY coordinates are on the image's bounds.
// This means that a left-upper point of a sub-image might not be (0, 0).
2018-06-12 03:33:09 +02:00
SrcX float32
SrcY float32
// ColorR/ColorG/ColorB/ColorA represents color scaling values.
// 1 means the original source image color is used.
// 0 means a transparent color is used.
ColorR float32
ColorG float32
ColorB float32
ColorA float32
}
// Address represents a sampler address mode.
type Address int
const (
// AddressClampToZero means that out-of-range texture coordinates return 0 (transparent).
AddressClampToZero Address = Address(graphics.AddressClampToZero)
// AddressRepeat means that texture coordinates wrap to the other side of the texture.
AddressRepeat Address = Address(graphics.AddressRepeat)
)
2018-06-12 03:33:09 +02:00
// DrawTrianglesOptions represents options to render triangles on an image.
//
// Note that this API is experimental.
type DrawTrianglesOptions struct {
// ColorM is a color matrix to draw.
// The default (zero) value is identity, which doesn't change any color.
// ColorM is applied before vertex color scale is applied.
ColorM ColorM
// CompositeMode is a composite mode to draw.
// The default (zero) value is regular alpha blending.
CompositeMode CompositeMode
// Filter is a type of texture filter.
// The default (zero) value is FilterDefault.
Filter Filter
// Address is a sampler address mode.
// The default (zero) value is AddressClampToZero.
Address Address
2018-06-12 03:33:09 +02:00
}
// MaxIndicesNum is the maximum number of indices for DrawTriangles.
const MaxIndicesNum = graphics.IndicesNum
2018-06-12 03:33:09 +02:00
// DrawTriangles draws a triangle with the specified vertices and their indices.
//
// If len(indices) is not multiple of 3, DrawTriangles panics.
//
// If len(indices) is more than MaxIndicesNum, DrawTriangles panics.
//
2018-06-12 03:33:09 +02:00
// The rule in which DrawTriangles works effectively is same as DrawImage's.
//
// When the image i is disposed, DrawTriangles does nothing.
//
2018-10-28 11:41:39 +01:00
// Internal mipmap is not used on DrawTriangles.
//
2018-06-12 03:33:09 +02:00
// Note that this API is experimental.
func (i *Image) DrawTriangles(vertices []Vertex, indices []uint16, img *Image, options *DrawTrianglesOptions) {
i.copyCheck()
if i.isDisposed() {
return
}
if i.isSubimage() {
panic("render to a subimage is not implemented")
}
2019-01-13 16:39:37 +01:00
img.resolvePixelsToSet(true)
i.resolvePixelsToSet(true)
2018-06-12 03:33:09 +02:00
if len(indices)%3 != 0 {
panic("ebiten: len(indices) % 3 must be 0")
}
if len(indices) > MaxIndicesNum {
panic("ebiten: len(indices) must be <= MaxIndicesNum")
}
2018-06-12 03:33:09 +02:00
// TODO: Check the maximum value of indices and len(vertices)?
if options == nil {
options = &DrawTrianglesOptions{}
}
2018-10-28 12:42:57 +01:00
mode := graphics.CompositeMode(options.CompositeMode)
2018-06-12 03:33:09 +02:00
filter := graphics.FilterNearest
2018-06-12 03:33:09 +02:00
if options.Filter != FilterDefault {
filter = graphics.Filter(options.Filter)
2018-06-12 03:33:09 +02:00
} else if img.filter != FilterDefault {
filter = graphics.Filter(img.filter)
2018-06-12 03:33:09 +02:00
}
vs := make([]float32, len(vertices)*graphics.VertexFloatNum)
2018-10-24 19:11:54 +02:00
src := img.mipmap.original()
r := img.Bounds()
for idx, v := range vertices {
src.PutVertex(vs[idx*graphics.VertexFloatNum:(idx+1)*graphics.VertexFloatNum],
float32(v.DstX), float32(v.DstY), v.SrcX, v.SrcY,
float32(r.Min.X), float32(r.Min.Y), float32(r.Max.X), float32(r.Max.Y),
v.ColorR, v.ColorG, v.ColorB, v.ColorA)
2018-06-12 03:33:09 +02:00
}
i.mipmap.original().DrawImage(img.mipmap.original(), vs, indices, options.ColorM.impl, mode, filter, graphics.Address(options.Address))
i.disposeMipmaps()
2018-06-12 03:33:09 +02:00
}
// SubImage returns an image representing the portion of the image p visible through r. The returned value shares pixels with the original image.
//
// The returned value is always *ebiten.Image.
//
// If the image is disposed, SubImage returns nil.
//
// In the current Ebiten implementation, SubImage is available only as a rendering source.
func (i *Image) SubImage(r image.Rectangle) image.Image {
i.copyCheck()
if i.isDisposed() {
return nil
}
img := &Image{
mipmap: i.mipmap,
filter: i.filter,
}
// Keep the original image's reference not to dispose that by GC.
if i.isSubimage() {
img.original = i.original
} else {
img.original = i
}
img.addr = img
runtime.SetFinalizer(img, (*Image).Dispose)
r = r.Intersect(img.Bounds())
// Need to check Empty explicitly. See the standard image package implementations.
if r.Empty() {
img.bounds = &image.ZR
} else {
img.bounds = &r
}
return img
}
// Bounds returns the bounds of the image.
func (i *Image) Bounds() image.Rectangle {
if i.bounds == nil {
w, h := i.mipmap.original().Size()
return image.Rect(0, 0, w, h)
}
return *i.bounds
}
// 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
}
// 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.
//
// At always returns a transparent color if the image is disposed.
2017-09-30 18:59:34 +02:00
//
2018-05-01 11:07:52 +02:00
// Note that important logic should not rely on At result since
// At might include a very slight error on some machines.
//
2019-01-18 18:30:06 +01:00
// At can't be called outside the main loop (ebiten.Run's updating function) starts (as of version 1.4.0-alpha).
func (i *Image) At(x, y int) color.Color {
2018-02-26 03:35:55 +01:00
if i.isDisposed() {
return color.RGBA{}
2017-05-02 19:41:44 +02:00
}
if i.bounds != nil && !image.Pt(x, y).In(*i.bounds) {
return color.RGBA{}
}
2019-01-13 16:39:37 +01:00
i.resolvePixelsToSet(true)
r, g, b, a := i.mipmap.original().At(x, y)
return color.RGBA{r, g, b, a}
}
2019-01-13 16:39:37 +01:00
// Set sets the color at (x, y).
//
// Set loads pixels from GPU to system memory if necessary, which means that Set can be slow.
//
2019-01-18 18:30:06 +01:00
// Set can't be called outside the main loop (ebiten.Run's updating function) starts.
2019-01-13 16:39:37 +01:00
//
// If the image is disposed, Set does nothing.
2019-01-13 20:07:26 +01:00
func (img *Image) Set(x, y int, clr color.Color) {
img.copyCheck()
if img.isDisposed() {
2019-01-13 16:39:37 +01:00
return
}
2019-01-13 20:07:26 +01:00
if img.bounds != nil && !image.Pt(x, y).In(*img.bounds) {
2019-01-13 16:39:37 +01:00
return
}
2019-01-13 20:07:26 +01:00
if img.isSubimage() {
img = img.original
2019-01-13 16:39:37 +01:00
}
2019-01-13 20:07:26 +01:00
w, h := img.Size()
if img.pixelsToSet == nil {
pix := make([]byte, 4*w*h)
idx := 0
for j := 0; j < h; j++ {
for i := 0; i < w; i++ {
r, g, b, a := img.mipmap.original().At(i, j)
pix[4*idx] = r
pix[4*idx+1] = g
pix[4*idx+2] = b
pix[4*idx+3] = a
2019-01-13 20:07:26 +01:00
idx++
}
}
img.pixelsToSet = pix
2019-01-13 16:39:37 +01:00
}
r, g, b, a := clr.RGBA()
2019-01-13 20:07:26 +01:00
img.pixelsToSet[4*(x+y*w)] = byte(r >> 8)
img.pixelsToSet[4*(x+y*w)+1] = byte(g >> 8)
img.pixelsToSet[4*(x+y*w)+2] = byte(b >> 8)
img.pixelsToSet[4*(x+y*w)+3] = byte(a >> 8)
2019-01-13 16:39:37 +01:00
}
2019-01-13 20:07:26 +01:00
func (i *Image) resolvePixelsToSet(draw bool) {
if i.isSubimage() {
i = i.original
2019-01-13 16:39:37 +01:00
}
2019-01-13 20:07:26 +01:00
if i.pixelsToSet == nil {
2019-01-13 16:39:37 +01:00
return
}
if !draw {
2019-01-13 20:07:26 +01:00
i.pixelsToSet = nil
2019-01-13 16:39:37 +01:00
return
}
2019-01-13 20:07:26 +01:00
i.ReplacePixels(i.pixelsToSet)
i.pixelsToSet = nil
2019-01-13 16:39:37 +01: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.
//
2017-09-30 18:59:34 +02:00
// Dispose is useful to save memory.
//
// When the image is disposed, Dipose does nothing.
//
// Dipose always return nil as of 1.5.0-alpha.
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() {
return nil
}
if !i.isSubimage() {
i.mipmap.dispose()
}
2019-01-13 16:39:37 +01:00
i.resolvePixelsToSet(false)
runtime.SetFinalizer(i, nil)
return nil
}
// 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).
//
// ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D).
//
2017-10-01 10:24:30 +02:00
// When len(p) is not appropriate, ReplacePixels panics.
//
// 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() {
return nil
}
// TODO: Implement this.
if i.isSubimage() {
panic("render to a subimage is not implemented")
}
2019-01-13 16:39:37 +01:00
i.resolvePixelsToSet(false)
s := i.Bounds().Size()
if l := 4 * s.X * s.Y; len(p) != l {
panic(fmt.Sprintf("ebiten: len(p) was %d but must be %d", len(p), l))
}
2018-10-24 19:11:54 +02:00
i.mipmap.original().ReplacePixels(p)
i.disposeMipmaps()
return nil
}
2014-12-28 16:21:40 +01:00
// A DrawImageOptions represents options to render an image on an image.
type DrawImageOptions struct {
2017-09-30 18:59:34 +02:00
// 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.
CompositeMode CompositeMode
2015-01-04 16:42:20 +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).
//
// 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
// Deprecated (as of 1.5.0-alpha): Use SubImage instead.
ImageParts ImageParts
// Deprecated (as of 1.1.0-alpha): Use SubImage instead.
2015-01-04 16:42:20 +01:00
Parts []ImagePart
// Deprecated (as of 1.9.0-alpha): Use SubImage instead.
SourceRect *image.Rectangle
2014-12-24 14:46:00 +01:00
}
2016-02-05 15:20:41 +01:00
// NewImage returns an empty image.
//
// If width or height is less than 1 or more than device-dependent maximum size, NewImage panics.
//
// filter argument is just for backward compatibility.
// If you are not sure, specify FilterDefault.
//
// 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-10 16:05:06 +01:00
s := shareable.NewImage(width, height)
i := &Image{
mipmap: newMipmap(s),
2018-10-25 05:47:27 +02:00
filter: filter,
2018-02-25 13:54:35 +01:00
}
i.addr = i
runtime.SetFinalizer(i, (*Image).Dispose)
return i, nil
2016-07-04 20:40:40 +02:00
}
// newVolatileImage returns an empty 'volatile' image.
// 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.
// 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.
//
// If width or height is less than 1 or more than device-dependent maximum size, newVolatileImage panics.
func newVolatileImage(width, height int) *Image {
2018-02-25 13:54:35 +01:00
i := &Image{
mipmap: newMipmap(shareable.NewVolatileImage(width, height)),
2018-02-25 13:54:35 +01:00
}
i.addr = i
runtime.SetFinalizer(i, (*Image).Dispose)
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
//
// If source's width or height is less than 1 or more than device-dependent maximum size, NewImageFromImage panics.
//
// filter argument is just for backward compatibility.
// If you are not sure, specify FilterDefault.
//
// Error returned by NewImageFromImage is always nil as of 1.5.0-alpha.
func NewImageFromImage(source image.Image, filter Filter) (*Image, error) {
size := source.Bounds().Size()
width, height := size.X, size.Y
2018-03-10 16:05:06 +01:00
s := shareable.NewImage(width, height)
i := &Image{
mipmap: newMipmap(s),
2018-10-25 05:47:27 +02:00
filter: filter,
}
i.addr = i
runtime.SetFinalizer(i, (*Image).Dispose)
2018-10-28 15:03:06 +01:00
_ = i.ReplacePixels(graphics.CopyImage(source))
return i, nil
2016-02-05 15:20:41 +01:00
}
func newImageWithScreenFramebuffer(width, height int) *Image {
2018-02-25 13:54:35 +01:00
i := &Image{
mipmap: newMipmap(shareable.NewScreenFramebufferImage(width, height)),
2018-10-25 05:47:27 +02:00
filter: FilterDefault,
2018-02-25 13:54:35 +01:00
}
i.addr = i
runtime.SetFinalizer(i, (*Image).Dispose)
return i
}
// MaxImageSize is deprecated as of 1.7.0-alpha. No replacement so far.
//
// TODO: Make this replacement (#541)
var MaxImageSize = 4096