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 (
|
2020-07-17 18:09:58 +02:00
|
|
|
"fmt"
|
2014-12-22 17:26:44 +01:00
|
|
|
"image"
|
2014-12-19 22:18:28 +01:00
|
|
|
"image/color"
|
2016-02-06 18:24:35 +01:00
|
|
|
|
2021-07-27 03:37:14 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/affine"
|
2022-06-07 16:57:56 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/atlas"
|
2022-10-02 07:51:01 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/builtinshader"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
2023-11-04 08:29:24 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicscommand"
|
2022-02-06 12:41:32 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2023-07-31 18:24:23 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/shaderir"
|
2022-02-13 08:30:33 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/ui"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2017-07-22 22:46:32 +02:00
|
|
|
// Image represents a rectangle set of pixels.
|
|
|
|
// The pixel format is alpha-premultiplied RGBA.
|
2022-08-07 18:46:45 +02:00
|
|
|
// Image implements the standard image.Image and draw.Image interfaces.
|
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.
|
2022-09-28 16:44:27 +02:00
|
|
|
addr *Image
|
|
|
|
image *ui.Image
|
|
|
|
original *Image
|
|
|
|
bounds image.Rectangle
|
|
|
|
|
2023-03-14 05:06:11 +01:00
|
|
|
// tmpVertices must not be reused until ui.Image.Draw* is called.
|
2022-12-02 13:04:03 +01:00
|
|
|
tmpVertices []float32
|
2022-12-03 13:47:10 +01:00
|
|
|
|
2024-07-02 09:40:53 +02:00
|
|
|
// tmpIndices must not be reused until ui.Image.Draw* is called.
|
|
|
|
tmpIndices []uint32
|
|
|
|
|
2023-03-14 05:06:11 +01:00
|
|
|
// tmpUniforms must not be reused until ui.Image.Draw* is called.
|
2022-12-03 13:47:10 +01:00
|
|
|
tmpUniforms []uint32
|
2022-12-05 17:57:48 +01:00
|
|
|
|
|
|
|
// Do not add a 'buffering' member that are resolved lazily.
|
|
|
|
// This tends to forget resolving the buffer easily (#2362).
|
2022-07-03 18:00:30 +02:00
|
|
|
}
|
|
|
|
|
2018-02-25 13:54:35 +01:00
|
|
|
func (i *Image) copyCheck() {
|
|
|
|
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.
|
2023-01-19 15:42:35 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use Bounds().Dx() and Bounds().Dy() or Bounds().Size() instead.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Size() (width, height int) {
|
2018-11-07 20:22:19 +01:00
|
|
|
s := i.Bounds().Size()
|
|
|
|
return s.X, s.Y
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-04-07 18:39:06 +02:00
|
|
|
func (i *Image) isDisposed() bool {
|
2022-03-19 17:24:47 +01:00
|
|
|
return i.image == nil
|
2018-04-07 18:39:06 +02:00
|
|
|
}
|
|
|
|
|
2019-02-21 15:24:02 +01:00
|
|
|
func (i *Image) isSubImage() bool {
|
2019-02-21 15:25:41 +01:00
|
|
|
return i.original != nil
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
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.
|
2020-10-05 17:01:40 +02:00
|
|
|
func (i *Image) Clear() {
|
2019-01-12 16:56:33 +01:00
|
|
|
i.Fill(color.Transparent)
|
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.
|
2020-10-05 17:01:40 +02:00
|
|
|
func (i *Image) Fill(clr color.Color) {
|
2022-04-01 11:16:03 +02:00
|
|
|
i.copyCheck()
|
2022-07-03 18:00:30 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
2018-10-23 16:27:27 +02:00
|
|
|
|
2022-04-01 11:16:03 +02:00
|
|
|
var crf, cgf, cbf, caf float32
|
|
|
|
cr, cg, cb, ca := clr.RGBA()
|
2022-10-02 06:26:33 +02:00
|
|
|
crf = float32(cr) / 0xffff
|
|
|
|
cgf = float32(cg) / 0xffff
|
|
|
|
cbf = float32(cb) / 0xffff
|
|
|
|
caf = float32(ca) / 0xffff
|
2023-08-27 14:38:54 +02:00
|
|
|
i.image.Fill(crf, cgf, cbf, caf, i.adjustedBounds())
|
2018-02-23 15:58:17 +01:00
|
|
|
}
|
|
|
|
|
2022-10-02 16:24:15 +02:00
|
|
|
func canSkipMipmap(geom GeoM, filter builtinshader.Filter) bool {
|
|
|
|
if filter != builtinshader.FilterLinear {
|
2020-07-26 05:23:55 +02:00
|
|
|
return true
|
|
|
|
}
|
2020-10-30 18:59:34 +01:00
|
|
|
return geom.det2x2() >= 0.999
|
2020-07-26 05:23:55 +02:00
|
|
|
}
|
|
|
|
|
2020-07-23 11:55:19 +02:00
|
|
|
// DrawImageOptions represents options for DrawImage.
|
|
|
|
type DrawImageOptions struct {
|
|
|
|
// GeoM is a geometry matrix to draw.
|
2020-08-07 20:12:18 +02:00
|
|
|
// The default (zero) value is identity, which draws the image at (0, 0).
|
2020-07-23 11:55:19 +02:00
|
|
|
GeoM GeoM
|
|
|
|
|
2022-11-01 18:43:42 +01:00
|
|
|
// ColorScale is a scale of color.
|
2022-11-27 06:12:48 +01:00
|
|
|
//
|
|
|
|
// ColorScale is slightly different from colorm.ColorM's Scale in terms of alphas.
|
|
|
|
// ColorScale is applied to premultiplied-alpha colors, while colorm.ColorM is applied to straight-alpha colors.
|
2023-03-20 03:04:55 +01:00
|
|
|
// Thus, ColorM.Scale(r, g, b, a) equals to ColorScale.Scale(r*a, g*a, b*a, a).
|
2022-11-27 06:12:48 +01:00
|
|
|
//
|
2022-11-01 18:43:42 +01:00
|
|
|
// The default (zero) value is identity, which is (1, 1, 1, 1).
|
|
|
|
ColorScale ColorScale
|
|
|
|
|
2020-07-23 11:55:19 +02:00
|
|
|
// ColorM is a color matrix to draw.
|
|
|
|
// The default (zero) value is identity, which doesn't change any color.
|
2022-11-01 18:43:42 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use ColorScale or the package colorm instead.
|
2020-07-23 11:55:19 +02:00
|
|
|
ColorM ColorM
|
|
|
|
|
|
|
|
// CompositeMode is a composite mode to draw.
|
2022-10-16 13:02:42 +02:00
|
|
|
// The default (zero) value is CompositeModeCustom (Blend is used).
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use Blend instead.
|
2020-07-23 11:55:19 +02:00
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
// Blend is a blending way of the source color and the destination color.
|
|
|
|
// Blend is used only when CompositeMode is CompositeModeCustom.
|
|
|
|
// The default (zero) value is the regular alpha blending.
|
|
|
|
Blend Blend
|
|
|
|
|
2020-07-23 11:55:19 +02:00
|
|
|
// Filter is a type of texture filter.
|
2020-10-04 18:48:45 +02:00
|
|
|
// The default (zero) value is FilterNearest.
|
2020-07-23 11:55:19 +02:00
|
|
|
Filter Filter
|
|
|
|
}
|
|
|
|
|
2022-06-11 16:06:59 +02:00
|
|
|
// adjustPosition converts the position in the *ebiten.Image coordinate to the *ui.Image coordinate.
|
|
|
|
func (i *Image) adjustPosition(x, y int) (int, int) {
|
|
|
|
if i.isSubImage() {
|
|
|
|
or := i.original.Bounds()
|
|
|
|
x -= or.Min.X
|
|
|
|
y -= or.Min.Y
|
|
|
|
return x, y
|
|
|
|
}
|
|
|
|
|
|
|
|
r := i.Bounds()
|
|
|
|
x -= r.Min.X
|
|
|
|
y -= r.Min.Y
|
|
|
|
return x, y
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustPositionF32 converts the position in the *ebiten.Image coordinate to the *ui.Image coordinate.
|
|
|
|
func (i *Image) adjustPositionF32(x, y float32) (float32, float32) {
|
|
|
|
if i.isSubImage() {
|
|
|
|
or := i.original.Bounds()
|
|
|
|
x -= float32(or.Min.X)
|
|
|
|
y -= float32(or.Min.Y)
|
|
|
|
return x, y
|
|
|
|
}
|
|
|
|
|
|
|
|
r := i.Bounds()
|
|
|
|
x -= float32(r.Min.X)
|
|
|
|
y -= float32(r.Min.Y)
|
|
|
|
return x, y
|
|
|
|
}
|
|
|
|
|
2023-08-27 14:38:54 +02:00
|
|
|
func (i *Image) adjustedBounds() image.Rectangle {
|
|
|
|
b := i.Bounds()
|
|
|
|
x, y := i.adjustPosition(b.Min.X, b.Min.Y)
|
|
|
|
return image.Rect(x, y, x+b.Dx(), y+b.Dy())
|
|
|
|
}
|
|
|
|
|
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
|
|
|
//
|
2019-01-21 03:58:41 +01:00
|
|
|
// DrawImage accepts the options. For details, see the document of
|
|
|
|
// DrawImageOptions.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2019-01-21 03:58:41 +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
|
2019-01-21 03:58:41 +01:00
|
|
|
// when the successive calls of DrawImages satisfy the below conditions:
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
2022-11-27 06:12:48 +01:00
|
|
|
// - All render targets are the same (A in A.DrawImage(B, op))
|
|
|
|
// - All Blend values are the same
|
|
|
|
// - All Filter values are the same
|
|
|
|
//
|
|
|
|
// A whole image and its sub-image are considered to be the same, but some
|
|
|
|
// environments like browsers might not work efficiently (#2471).
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
2019-01-21 03:58:41 +01:00
|
|
|
// Even when all the above conditions are satisfied, multiple draw commands can
|
2022-05-25 15:48:19 +02:00
|
|
|
// be used in really rare cases. Ebitengine images usually share an internal
|
2019-01-21 03:58:41 +01:00
|
|
|
// automatic texture atlas, but when you consume the atlas, or you create a huge
|
|
|
|
// image, those images cannot be on the same texture atlas. In this case, draw
|
2021-12-14 12:37:29 +01:00
|
|
|
// commands are separated.
|
|
|
|
// Another case is when you use an offscreen as a render source. An offscreen
|
|
|
|
// doesn't share the texture atlas with high probability.
|
2019-01-19 14:14:04 +01:00
|
|
|
//
|
2022-09-23 12:08:35 +02:00
|
|
|
// For more performance tips, see https://ebitengine.org/en/documents/performancetips.html
|
2020-10-05 17:21:11 +02:00
|
|
|
func (i *Image) DrawImage(img *Image, options *DrawImageOptions) {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
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() {
|
2020-10-05 17:21:11 +02:00
|
|
|
return
|
2017-05-02 20:03:13 +02:00
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2017-05-02 19:41:44 +02:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawImageOptions{}
|
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
var blend graphicsdriver.Blend
|
|
|
|
if options.CompositeMode == CompositeModeCustom {
|
|
|
|
blend = options.Blend.internalBlend()
|
|
|
|
} else {
|
|
|
|
blend = options.CompositeMode.blend().internalBlend()
|
|
|
|
}
|
2022-10-02 16:24:15 +02:00
|
|
|
filter := builtinshader.Filter(options.Filter)
|
2018-02-13 18:02:48 +01:00
|
|
|
|
2023-08-26 18:40:37 +02:00
|
|
|
geoM := options.GeoM
|
2022-06-11 16:06:59 +02:00
|
|
|
if offsetX, offsetY := i.adjustPosition(0, 0); offsetX != 0 || offsetY != 0 {
|
2023-08-26 18:40:37 +02:00
|
|
|
geoM.Translate(float64(offsetX), float64(offsetY))
|
2022-06-11 16:06:59 +02:00
|
|
|
}
|
2023-08-26 18:40:37 +02:00
|
|
|
a, b, c, d, tx, ty := geoM.elements32()
|
2020-07-15 18:53:46 +02:00
|
|
|
|
2022-06-11 16:06:59 +02:00
|
|
|
bounds := img.Bounds()
|
|
|
|
sx0, sy0 := img.adjustPosition(bounds.Min.X, bounds.Min.Y)
|
|
|
|
sx1, sy1 := img.adjustPosition(bounds.Max.X, bounds.Max.Y)
|
2022-04-01 19:40:18 +02:00
|
|
|
colorm, cr, cg, cb, ca := colorMToScale(options.ColorM.affineColorM())
|
2022-11-01 18:43:42 +01:00
|
|
|
cr, cg, cb, ca = options.ColorScale.apply(cr, cg, cb, ca)
|
2022-12-02 13:04:03 +01:00
|
|
|
vs := i.ensureTmpVertices(4 * graphics.VertexFloatCount)
|
2024-08-11 17:27:28 +02:00
|
|
|
graphics.QuadVerticesFromSrcAndMatrix(vs, float32(sx0), float32(sy0), float32(sx1), float32(sy1), a, b, c, d, tx, ty, cr, cg, cb, ca)
|
2020-07-15 18:53:46 +02:00
|
|
|
is := graphics.QuadIndices()
|
2020-07-23 10:08:33 +02:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
srcs := [graphics.ShaderSrcImageCount]*ui.Image{img.image}
|
2021-07-27 03:37:14 +02:00
|
|
|
|
2022-10-02 07:51:01 +02:00
|
|
|
useColorM := !colorm.IsIdentity()
|
2022-10-02 18:23:44 +02:00
|
|
|
shader := builtinShader(filter, builtinshader.AddressUnsafe, useColorM)
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = i.tmpUniforms[:0]
|
2022-10-02 07:51:01 +02:00
|
|
|
if useColorM {
|
|
|
|
var body [16]float32
|
|
|
|
var translation [4]float32
|
|
|
|
colorm.Elements(body[:], translation[:])
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = shader.appendUniforms(i.tmpUniforms, map[string]any{
|
2022-10-02 07:51:01 +02:00
|
|
|
builtinshader.UniformColorMBody: body[:],
|
|
|
|
builtinshader.UniformColorMTranslation: translation[:],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
i.image.DrawTriangles(srcs, vs, is, blend, i.adjustedBounds(), [graphics.ShaderSrcImageCount]image.Rectangle{img.adjustedBounds()}, shader.shader, i.tmpUniforms, graphicsdriver.FillRuleFillAll, canSkipMipmap(geoM, filter), false)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// Vertex represents a vertex passed to DrawTriangles.
|
|
|
|
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.
|
2023-01-28 11:06:38 +01:00
|
|
|
// This means that an upper-left 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.
|
internal/atlas: optimization: send premultiplied alpha from vertex to fragment shader. (#1996)
Note that this applies only to the builtin shaders - interface for Kage stays
unchanged for compatibility.
Minor compatibility delta: when interpolating alpha values, previous code has
created nonsense values, such as, when interpolating from
fully-transparent-black (0,0,0,0) to opaque-white (1,1,1,1), something like
half-transparent-grey (0.25,0.25,0.25,0.5) where half-transparent-white
(0.5,0.5,0.5,0.5) is used by the new code.
I assume this is a strict improvement, however this may warrant some testing.
Possible later improvement could be moving the premultiplication from fragment
shader to CPU. Did not do this as it makes the code rather inconsistent of Kage
vs built-in shader usage.
Updates #1772
2022-02-23 18:27:50 +01:00
|
|
|
// Their interpretation depends on the concrete draw call used:
|
2022-10-02 12:35:17 +02:00
|
|
|
// - DrawTriangles: straight-alpha or premultiplied-alpha encoded color multiplier.
|
2022-11-01 05:09:52 +01:00
|
|
|
// The format is determined by ColorScaleMode in DrawTrianglesOptions.
|
internal/atlas: optimization: send premultiplied alpha from vertex to fragment shader. (#1996)
Note that this applies only to the builtin shaders - interface for Kage stays
unchanged for compatibility.
Minor compatibility delta: when interpolating alpha values, previous code has
created nonsense values, such as, when interpolating from
fully-transparent-black (0,0,0,0) to opaque-white (1,1,1,1), something like
half-transparent-grey (0.25,0.25,0.25,0.5) where half-transparent-white
(0.5,0.5,0.5,0.5) is used by the new code.
I assume this is a strict improvement, however this may warrant some testing.
Possible later improvement could be moving the premultiplication from fragment
shader to CPU. Did not do this as it makes the code rather inconsistent of Kage
vs built-in shader usage.
Updates #1772
2022-02-23 18:27:50 +01:00
|
|
|
// If ColorA is 0, the vertex is fully transparent and color is ignored.
|
|
|
|
// If ColorA is 1, the vertex has the color (ColorR, ColorG, ColorB).
|
2022-10-02 12:35:17 +02:00
|
|
|
// Vertex colors are converted to premultiplied-alpha internally and
|
|
|
|
// interpolated linearly respecting alpha.
|
internal/atlas: optimization: send premultiplied alpha from vertex to fragment shader. (#1996)
Note that this applies only to the builtin shaders - interface for Kage stays
unchanged for compatibility.
Minor compatibility delta: when interpolating alpha values, previous code has
created nonsense values, such as, when interpolating from
fully-transparent-black (0,0,0,0) to opaque-white (1,1,1,1), something like
half-transparent-grey (0.25,0.25,0.25,0.5) where half-transparent-white
(0.5,0.5,0.5,0.5) is used by the new code.
I assume this is a strict improvement, however this may warrant some testing.
Possible later improvement could be moving the premultiplication from fragment
shader to CPU. Did not do this as it makes the code rather inconsistent of Kage
vs built-in shader usage.
Updates #1772
2022-02-23 18:27:50 +01:00
|
|
|
// - DrawTrianglesShader: arbitrary floating point values sent to the shader.
|
2023-01-28 11:06:38 +01:00
|
|
|
// These are interpolated linearly and independently of each other.
|
2018-06-12 03:33:09 +02:00
|
|
|
ColorR float32
|
|
|
|
ColorG float32
|
|
|
|
ColorB float32
|
|
|
|
ColorA float32
|
|
|
|
}
|
|
|
|
|
2018-12-23 19:00:00 +01:00
|
|
|
// Address represents a sampler address mode.
|
|
|
|
type Address int
|
|
|
|
|
|
|
|
const (
|
2023-01-28 11:06:38 +01:00
|
|
|
// AddressUnsafe means there is no guarantee when the texture coordinates are out of range.
|
2022-10-02 16:24:15 +02:00
|
|
|
AddressUnsafe Address = Address(builtinshader.AddressUnsafe)
|
2020-10-04 16:48:20 +02:00
|
|
|
|
2018-12-23 19:00:00 +01:00
|
|
|
// AddressClampToZero means that out-of-range texture coordinates return 0 (transparent).
|
2022-10-02 16:24:15 +02:00
|
|
|
AddressClampToZero Address = Address(builtinshader.AddressClampToZero)
|
2018-12-23 19:00:00 +01:00
|
|
|
|
|
|
|
// AddressRepeat means that texture coordinates wrap to the other side of the texture.
|
2022-10-02 16:24:15 +02:00
|
|
|
AddressRepeat Address = Address(builtinshader.AddressRepeat)
|
2018-12-23 19:00:00 +01:00
|
|
|
)
|
|
|
|
|
2021-09-19 09:19:40 +02:00
|
|
|
// FillRule is the rule whether an overlapped region is rendered with DrawTriangles(Shader).
|
|
|
|
type FillRule int
|
|
|
|
|
2024-06-08 05:06:00 +02:00
|
|
|
const (
|
|
|
|
// FillRuleFillAll indicates all the triangles are rendered regardless of overlaps.
|
|
|
|
FillRuleFillAll FillRule = FillRule(graphicsdriver.FillRuleFillAll)
|
|
|
|
|
|
|
|
// FillRuleNonZero means that triangles are rendered based on the non-zero rule.
|
|
|
|
// If and only if the number of overlaps is not 0, the region is rendered.
|
|
|
|
FillRuleNonZero FillRule = FillRule(graphicsdriver.FillRuleNonZero)
|
|
|
|
|
|
|
|
// FillRuleEvenOdd means that triangles are rendered based on the even-odd rule.
|
|
|
|
// If and only if the number of overlaps is odd, the region is rendered.
|
|
|
|
FillRuleEvenOdd FillRule = FillRule(graphicsdriver.FillRuleEvenOdd)
|
|
|
|
)
|
|
|
|
|
2021-09-19 09:19:40 +02:00
|
|
|
const (
|
|
|
|
// FillAll indicates all the triangles are rendered regardless of overlaps.
|
2024-06-08 05:06:00 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.8. Use FillRuleFillAll instead.
|
|
|
|
FillAll = FillRuleFillAll
|
2021-09-19 09:19:40 +02:00
|
|
|
|
2023-11-06 01:18:08 +01:00
|
|
|
// NonZero means that triangles are rendered based on the non-zero rule.
|
|
|
|
// If and only if the number of overlaps is not 0, the region is rendered.
|
2024-06-08 05:06:00 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.8. Use FillRuleNonZero instead.
|
|
|
|
NonZero = FillRuleNonZero
|
2023-11-06 01:18:08 +01:00
|
|
|
|
2021-09-19 09:19:40 +02:00
|
|
|
// EvenOdd means that triangles are rendered based on the even-odd rule.
|
2023-01-28 11:06:38 +01:00
|
|
|
// If and only if the number of overlaps is odd, the region is rendered.
|
2024-06-08 05:06:00 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.8. Use FillRuleEvenOdd instead.
|
|
|
|
EvenOdd = FillRuleEvenOdd
|
2021-09-19 09:19:40 +02:00
|
|
|
)
|
|
|
|
|
2022-11-01 05:09:52 +01:00
|
|
|
// ColorScaleMode is the mode of color scales in vertices.
|
|
|
|
type ColorScaleMode int
|
2022-10-02 06:44:18 +02:00
|
|
|
|
|
|
|
const (
|
2022-11-01 05:09:52 +01:00
|
|
|
// ColorScaleModeStraightAlpha indicates color scales in vertices are
|
2022-10-02 06:44:18 +02:00
|
|
|
// straight-alpha encoded color multiplier.
|
2022-11-01 05:09:52 +01:00
|
|
|
ColorScaleModeStraightAlpha ColorScaleMode = iota
|
2022-10-02 06:44:18 +02:00
|
|
|
|
2023-01-28 11:06:38 +01:00
|
|
|
// ColorScaleModePremultipliedAlpha indicates color scales in vertices are
|
2022-10-02 06:44:18 +02:00
|
|
|
// premultiplied-alpha encoded color multiplier.
|
2022-11-01 05:09:52 +01:00
|
|
|
ColorScaleModePremultipliedAlpha
|
2022-10-02 06:44:18 +02:00
|
|
|
)
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
// DrawTrianglesOptions represents options for DrawTriangles.
|
2018-06-12 03:33:09 +02:00
|
|
|
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.
|
2022-11-01 18:43:42 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use the package colorm instead.
|
2018-06-12 03:33:09 +02:00
|
|
|
ColorM ColorM
|
|
|
|
|
2022-11-01 05:28:44 +01:00
|
|
|
// ColorScaleMode is the mode of color scales in vertices.
|
2022-11-01 18:43:42 +01:00
|
|
|
// ColorScaleMode affects the color calculation with vertex colors, but doesn't affect with a color matrix.
|
2022-11-01 05:09:52 +01:00
|
|
|
// The default (zero) value is ColorScaleModeStraightAlpha.
|
|
|
|
ColorScaleMode ColorScaleMode
|
2022-10-02 06:44:18 +02:00
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// CompositeMode is a composite mode to draw.
|
2022-10-16 13:02:42 +02:00
|
|
|
// The default (zero) value is CompositeModeCustom (Blend is used).
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use Blend instead.
|
2018-06-12 03:33:09 +02:00
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
// Blend is a blending way of the source color and the destination color.
|
|
|
|
// Blend is used only when CompositeMode is CompositeModeCustom.
|
|
|
|
// The default (zero) value is the regular alpha blending.
|
|
|
|
Blend Blend
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// Filter is a type of texture filter.
|
2020-10-04 18:48:45 +02:00
|
|
|
// The default (zero) value is FilterNearest.
|
2018-06-12 03:33:09 +02:00
|
|
|
Filter Filter
|
2018-12-23 19:00:00 +01:00
|
|
|
|
|
|
|
// Address is a sampler address mode.
|
2020-10-04 16:48:20 +02:00
|
|
|
// The default (zero) value is AddressUnsafe.
|
2018-12-23 19:00:00 +01:00
|
|
|
Address Address
|
2021-07-02 12:26:09 +02:00
|
|
|
|
2021-09-19 09:19:40 +02:00
|
|
|
// FillRule indicates the rule how an overlapped region is rendered.
|
2021-07-02 12:26:09 +02:00
|
|
|
//
|
2024-06-08 05:06:00 +02:00
|
|
|
// The rules FillRuleNonZero and FillRuleEvenOdd are useful when you want to render a complex polygon.
|
2021-07-02 12:26:09 +02:00
|
|
|
// A complex polygon is a non-convex polygon like a concave polygon, a polygon with holes, or a self-intersecting polygon.
|
|
|
|
// See examples/vector for actual usages.
|
|
|
|
//
|
2024-06-08 05:06:00 +02:00
|
|
|
// The default (zero) value is FillRuleFillAll.
|
2021-09-19 09:19:40 +02:00
|
|
|
FillRule FillRule
|
2022-10-19 17:46:44 +02:00
|
|
|
|
|
|
|
// AntiAlias indicates whether the rendering uses anti-alias or not.
|
2022-10-21 06:42:52 +02:00
|
|
|
// AntiAlias is useful especially when you pass vertices from the vector package.
|
2022-10-19 17:46:44 +02:00
|
|
|
//
|
|
|
|
// AntiAlias increases internal draw calls and might affect performance.
|
2022-10-21 06:42:52 +02:00
|
|
|
// Use the build tag `ebitenginedebug` to check the number of draw calls if you care.
|
2022-10-19 17:46:44 +02:00
|
|
|
//
|
|
|
|
// The default (zero) value is false.
|
|
|
|
AntiAlias bool
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2022-07-12 19:26:27 +02:00
|
|
|
// MaxIndicesCount is the maximum number of indices for DrawTriangles and DrawTrianglesShader.
|
2023-03-23 12:01:10 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.6. This constant is no longer used.
|
|
|
|
const MaxIndicesCount = (1 << 16) / 3 * 3
|
2022-07-12 18:46:02 +02:00
|
|
|
|
2022-07-12 19:26:27 +02:00
|
|
|
// MaxIndicesNum is the maximum number of indices for DrawTriangles and DrawTrianglesShader.
|
2022-07-12 18:46:02 +02:00
|
|
|
//
|
2023-03-23 12:01:10 +01:00
|
|
|
// Deprecated: as of v2.4. This constant is no longer used.
|
|
|
|
const MaxIndicesNum = MaxIndicesCount
|
2018-11-23 11:01:16 +01:00
|
|
|
|
2023-03-23 13:03:16 +01:00
|
|
|
// MaxVerticesCount is the maximum number of vertices for DrawTriangles and DrawTrianglesShader.
|
2023-11-04 08:05:26 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.7. Use MaxVertexCount instead.
|
2023-11-04 08:29:24 +01:00
|
|
|
const MaxVerticesCount = graphicscommand.MaxVertexCount
|
2023-11-04 08:05:26 +01:00
|
|
|
|
|
|
|
// MaxVertexCount is the maximum number of vertices for DrawTriangles and DrawTrianglesShader.
|
2023-11-04 08:29:24 +01:00
|
|
|
const MaxVertexCount = graphicscommand.MaxVertexCount
|
2023-03-23 13:03:16 +01:00
|
|
|
|
2020-07-20 13:54:12 +02:00
|
|
|
// DrawTriangles draws triangles with the specified vertices and their indices.
|
2018-06-12 03:33:09 +02:00
|
|
|
//
|
2022-04-26 16:23:31 +02:00
|
|
|
// img is used as a source image. img cannot be nil.
|
|
|
|
// If you want to draw triangles with a solid color, use a small white image
|
|
|
|
// and adjust the color elements in the vertices. For an actual implementation,
|
|
|
|
// see the example 'vector'.
|
|
|
|
//
|
2023-03-23 11:56:25 +01:00
|
|
|
// Vertex contains color values, which are interpreted as straight-alpha colors by default.
|
|
|
|
// This depends on the option's ColorScaleMode.
|
internal/atlas: optimization: send premultiplied alpha from vertex to fragment shader. (#1996)
Note that this applies only to the builtin shaders - interface for Kage stays
unchanged for compatibility.
Minor compatibility delta: when interpolating alpha values, previous code has
created nonsense values, such as, when interpolating from
fully-transparent-black (0,0,0,0) to opaque-white (1,1,1,1), something like
half-transparent-grey (0.25,0.25,0.25,0.5) where half-transparent-white
(0.5,0.5,0.5,0.5) is used by the new code.
I assume this is a strict improvement, however this may warrant some testing.
Possible later improvement could be moving the premultiplication from fragment
shader to CPU. Did not do this as it makes the code rather inconsistent of Kage
vs built-in shader usage.
Updates #1772
2022-02-23 18:27:50 +01:00
|
|
|
//
|
2023-11-04 08:05:26 +01:00
|
|
|
// If len(vertices) is more than MaxVertexCount, the exceeding part is ignored.
|
2023-03-23 13:22:30 +01:00
|
|
|
//
|
2018-06-12 03:33:09 +02:00
|
|
|
// If len(indices) is not multiple of 3, DrawTriangles panics.
|
|
|
|
//
|
2023-11-04 08:05:26 +01:00
|
|
|
// If a value in indices is out of range of vertices, or not less than MaxVertexCount, DrawTriangles panics.
|
2023-03-23 13:03:16 +01:00
|
|
|
//
|
2018-06-12 03:33:09 +02:00
|
|
|
// The rule in which DrawTriangles works effectively is same as DrawImage's.
|
|
|
|
//
|
2020-07-20 15:19:28 +02:00
|
|
|
// When the given image is disposed, DrawTriangles panics.
|
|
|
|
//
|
2018-10-27 18:43:28 +02:00
|
|
|
// When the image i is disposed, DrawTriangles does nothing.
|
2018-06-12 03:33:09 +02:00
|
|
|
func (i *Image) DrawTriangles(vertices []Vertex, indices []uint16, img *Image, options *DrawTrianglesOptions) {
|
2018-10-27 18:43:28 +02:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2020-07-25 16:29:06 +02:00
|
|
|
if img != nil && img.isDisposed() {
|
2020-06-13 11:12:21 +02:00
|
|
|
panic("ebiten: the given image to DrawTriangles must not be disposed")
|
|
|
|
}
|
2018-10-27 18:43:28 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
2020-06-27 17:36:13 +02:00
|
|
|
|
2023-11-04 08:29:24 +01:00
|
|
|
if len(vertices) > graphicscommand.MaxVertexCount {
|
2023-03-23 13:22:30 +01:00
|
|
|
// The last part cannot be specified by indices. Just omit them.
|
2023-11-04 08:29:24 +01:00
|
|
|
vertices = vertices[:graphicscommand.MaxVertexCount]
|
2023-03-23 13:22:30 +01:00
|
|
|
}
|
2018-06-12 03:33:09 +02:00
|
|
|
if len(indices)%3 != 0 {
|
|
|
|
panic("ebiten: len(indices) % 3 must be 0")
|
|
|
|
}
|
2023-03-23 13:26:58 +01:00
|
|
|
for i, idx := range indices {
|
2023-03-23 13:03:16 +01:00
|
|
|
if int(idx) >= len(vertices) {
|
2023-03-23 13:26:58 +01:00
|
|
|
panic(fmt.Sprintf("ebiten: indices[%d] must be less than len(vertices) (%d) but was %d", i, len(vertices), idx))
|
2023-03-23 13:03:16 +01:00
|
|
|
}
|
|
|
|
}
|
2018-06-12 03:33:09 +02:00
|
|
|
|
|
|
|
if options == nil {
|
|
|
|
options = &DrawTrianglesOptions{}
|
|
|
|
}
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
var blend graphicsdriver.Blend
|
|
|
|
if options.CompositeMode == CompositeModeCustom {
|
|
|
|
blend = options.Blend.internalBlend()
|
|
|
|
} else {
|
|
|
|
blend = options.CompositeMode.blend().internalBlend()
|
|
|
|
}
|
2018-06-12 03:33:09 +02:00
|
|
|
|
2022-10-02 16:24:15 +02:00
|
|
|
address := builtinshader.Address(options.Address)
|
|
|
|
filter := builtinshader.Filter(options.Filter)
|
2020-09-20 11:32:18 +02:00
|
|
|
|
2022-04-01 19:40:18 +02:00
|
|
|
colorm, cr, cg, cb, ca := colorMToScale(options.ColorM.affineColorM())
|
|
|
|
|
2022-12-02 13:04:03 +01:00
|
|
|
vs := i.ensureTmpVertices(len(vertices) * graphics.VertexFloatCount)
|
2022-06-11 16:06:59 +02:00
|
|
|
dst := i
|
2022-11-01 05:09:52 +01:00
|
|
|
if options.ColorScaleMode == ColorScaleModeStraightAlpha {
|
2022-10-02 06:44:18 +02:00
|
|
|
for i, v := range vertices {
|
|
|
|
dx, dy := dst.adjustPositionF32(v.DstX, v.DstY)
|
|
|
|
vs[i*graphics.VertexFloatCount] = dx
|
|
|
|
vs[i*graphics.VertexFloatCount+1] = dy
|
|
|
|
sx, sy := img.adjustPositionF32(v.SrcX, v.SrcY)
|
|
|
|
vs[i*graphics.VertexFloatCount+2] = sx
|
|
|
|
vs[i*graphics.VertexFloatCount+3] = sy
|
|
|
|
vs[i*graphics.VertexFloatCount+4] = v.ColorR * v.ColorA * cr
|
|
|
|
vs[i*graphics.VertexFloatCount+5] = v.ColorG * v.ColorA * cg
|
|
|
|
vs[i*graphics.VertexFloatCount+6] = v.ColorB * v.ColorA * cb
|
|
|
|
vs[i*graphics.VertexFloatCount+7] = v.ColorA * ca
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for i, v := range vertices {
|
|
|
|
dx, dy := dst.adjustPositionF32(v.DstX, v.DstY)
|
|
|
|
vs[i*graphics.VertexFloatCount] = dx
|
|
|
|
vs[i*graphics.VertexFloatCount+1] = dy
|
|
|
|
sx, sy := img.adjustPositionF32(v.SrcX, v.SrcY)
|
|
|
|
vs[i*graphics.VertexFloatCount+2] = sx
|
|
|
|
vs[i*graphics.VertexFloatCount+3] = sy
|
|
|
|
vs[i*graphics.VertexFloatCount+4] = v.ColorR * cr
|
|
|
|
vs[i*graphics.VertexFloatCount+5] = v.ColorG * cg
|
|
|
|
vs[i*graphics.VertexFloatCount+6] = v.ColorB * cb
|
|
|
|
vs[i*graphics.VertexFloatCount+7] = v.ColorA * ca
|
|
|
|
}
|
2020-01-07 16:15:46 +01:00
|
|
|
}
|
2024-07-02 09:40:53 +02:00
|
|
|
is := i.ensureTmpIndices(len(indices))
|
2023-11-03 18:45:16 +01:00
|
|
|
for i := range is {
|
|
|
|
is[i] = uint32(indices[i])
|
|
|
|
}
|
2020-01-07 16:15:46 +01:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
srcs := [graphics.ShaderSrcImageCount]*ui.Image{img.image}
|
2020-09-20 11:32:18 +02:00
|
|
|
|
2022-10-02 07:51:01 +02:00
|
|
|
useColorM := !colorm.IsIdentity()
|
2022-10-02 18:23:44 +02:00
|
|
|
shader := builtinShader(filter, address, useColorM)
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = i.tmpUniforms[:0]
|
2022-10-02 07:51:01 +02:00
|
|
|
if useColorM {
|
|
|
|
var body [16]float32
|
|
|
|
var translation [4]float32
|
|
|
|
colorm.Elements(body[:], translation[:])
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = shader.appendUniforms(i.tmpUniforms, map[string]any{
|
2022-10-02 07:51:01 +02:00
|
|
|
builtinshader.UniformColorMBody: body[:],
|
|
|
|
builtinshader.UniformColorMTranslation: translation[:],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
i.image.DrawTriangles(srcs, vs, is, blend, i.adjustedBounds(), [graphics.ShaderSrcImageCount]image.Rectangle{img.adjustedBounds()}, shader.shader, i.tmpUniforms, graphicsdriver.FillRule(options.FillRule), filter != builtinshader.FilterLinear, options.AntiAlias)
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 09:55:39 +02:00
|
|
|
// DrawTrianglesShaderOptions represents options for DrawTrianglesShader.
|
2020-09-20 11:32:18 +02:00
|
|
|
type DrawTrianglesShaderOptions struct {
|
|
|
|
// CompositeMode is a composite mode to draw.
|
2022-10-16 13:02:42 +02:00
|
|
|
// The default (zero) value is CompositeModeCustom (Blend is used).
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use Blend instead.
|
2020-09-20 11:32:18 +02:00
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
// Blend is a blending way of the source color and the destination color.
|
|
|
|
// Blend is used only when CompositeMode is CompositeModeCustom.
|
|
|
|
// The default (zero) value is the regular alpha blending.
|
|
|
|
Blend Blend
|
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
// Uniforms is a set of uniform variables for the shader.
|
2020-09-23 09:24:41 +02:00
|
|
|
// The keys are the names of the uniform variables.
|
2022-11-18 06:08:27 +01:00
|
|
|
// The values must be a numeric type, or a slice or an array of a numeric type.
|
2020-09-23 09:24:41 +02:00
|
|
|
// If the uniform variable type is an array, a vector or a matrix,
|
2022-11-18 06:08:27 +01:00
|
|
|
// you have to specify linearly flattened values as a slice or an array.
|
|
|
|
// For example, if the uniform variable type is [4]vec4, the length will be 16.
|
2023-07-29 12:11:46 +02:00
|
|
|
//
|
|
|
|
// If a uniform variable's name doesn't exist in Uniforms, this is treated as if zero values are specified.
|
2022-11-03 07:33:09 +01:00
|
|
|
Uniforms map[string]any
|
2020-09-20 11:32:18 +02:00
|
|
|
|
|
|
|
// Images is a set of the source images.
|
2022-06-14 19:25:32 +02:00
|
|
|
// All the images' sizes must be the same.
|
2020-09-20 11:32:18 +02:00
|
|
|
Images [4]*Image
|
2021-07-02 12:26:09 +02:00
|
|
|
|
2021-09-19 09:19:40 +02:00
|
|
|
// FillRule indicates the rule how an overlapped region is rendered.
|
2021-07-02 12:26:09 +02:00
|
|
|
//
|
2024-06-08 05:06:00 +02:00
|
|
|
// The rules FillRuleNonZero and FillRuleEvenOdd are useful when you want to render a complex polygon.
|
2021-07-02 12:26:09 +02:00
|
|
|
// A complex polygon is a non-convex polygon like a concave polygon, a polygon with holes, or a self-intersecting polygon.
|
|
|
|
// See examples/vector for actual usages.
|
|
|
|
//
|
2024-06-08 05:06:00 +02:00
|
|
|
// The default (zero) value is FillRuleFillAll.
|
2021-09-19 09:19:40 +02:00
|
|
|
FillRule FillRule
|
2022-10-19 17:46:44 +02:00
|
|
|
|
|
|
|
// AntiAlias indicates whether the rendering uses anti-alias or not.
|
2022-10-21 06:42:52 +02:00
|
|
|
// AntiAlias is useful especially when you pass vertices from the vector package.
|
2022-10-19 17:46:44 +02:00
|
|
|
//
|
|
|
|
// AntiAlias increases internal draw calls and might affect performance.
|
2022-10-21 06:42:52 +02:00
|
|
|
// Use the build tag `ebitenginedebug` to check the number of draw calls if you care.
|
2022-10-19 17:46:44 +02:00
|
|
|
//
|
|
|
|
// The default (zero) value is false.
|
|
|
|
AntiAlias bool
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
|
|
|
|
2022-10-31 15:36:07 +01:00
|
|
|
// Check the number of images.
|
2024-06-09 19:02:47 +02:00
|
|
|
var _ [len(DrawTrianglesShaderOptions{}.Images) - graphics.ShaderSrcImageCount]struct{} = [0]struct{}{}
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
// DrawTrianglesShader draws triangles with the specified vertices and their indices with the specified shader.
|
|
|
|
//
|
internal/atlas: optimization: send premultiplied alpha from vertex to fragment shader. (#1996)
Note that this applies only to the builtin shaders - interface for Kage stays
unchanged for compatibility.
Minor compatibility delta: when interpolating alpha values, previous code has
created nonsense values, such as, when interpolating from
fully-transparent-black (0,0,0,0) to opaque-white (1,1,1,1), something like
half-transparent-grey (0.25,0.25,0.25,0.5) where half-transparent-white
(0.5,0.5,0.5,0.5) is used by the new code.
I assume this is a strict improvement, however this may warrant some testing.
Possible later improvement could be moving the premultiplication from fragment
shader to CPU. Did not do this as it makes the code rather inconsistent of Kage
vs built-in shader usage.
Updates #1772
2022-02-23 18:27:50 +01:00
|
|
|
// Vertex contains color values, which can be interpreted for any purpose by the shader.
|
|
|
|
//
|
2022-09-23 12:08:35 +02:00
|
|
|
// For the details about the shader, see https://ebitengine.org/en/documents/shader.html.
|
2020-09-23 09:45:00 +02:00
|
|
|
//
|
2023-08-27 18:07:26 +02:00
|
|
|
// If the shader unit is texels, one of the specified image is non-nil and its size is different from (width, height),
|
|
|
|
// DrawTrianglesShader panics.
|
|
|
|
// If one of the specified image is non-nil and is disposed, DrawTrianglesShader panics.
|
2023-08-27 16:57:01 +02:00
|
|
|
//
|
2023-11-04 08:05:26 +01:00
|
|
|
// If len(vertices) is more than MaxVertexCount, the exceeding part is ignored.
|
2023-03-23 13:22:30 +01:00
|
|
|
//
|
2020-09-20 11:32:18 +02:00
|
|
|
// If len(indices) is not multiple of 3, DrawTrianglesShader panics.
|
|
|
|
//
|
2023-11-04 08:05:26 +01:00
|
|
|
// If a value in indices is out of range of vertices, or not less than MaxVertexCount, DrawTrianglesShader panics.
|
2023-03-23 13:03:16 +01:00
|
|
|
//
|
2020-09-20 11:32:18 +02:00
|
|
|
// When a specified image is non-nil and is disposed, DrawTrianglesShader panics.
|
|
|
|
//
|
2023-07-29 11:57:24 +02:00
|
|
|
// If a specified uniform variable's length or type doesn't match with an expected one, DrawTrianglesShader panics.
|
|
|
|
//
|
2024-03-13 03:52:48 +01:00
|
|
|
// Even if a result is an invalid color as a premultiplied-alpha color, i.e. an alpha value exceeds other color values,
|
|
|
|
// the value is kept and is not clamped.
|
|
|
|
//
|
2020-09-20 11:32:18 +02:00
|
|
|
// When the image i is disposed, DrawTrianglesShader does nothing.
|
|
|
|
func (i *Image) DrawTrianglesShader(vertices []Vertex, indices []uint16, shader *Shader, options *DrawTrianglesShaderOptions) {
|
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
2020-06-29 17:02:33 +02:00
|
|
|
}
|
|
|
|
|
2023-11-03 16:28:14 +01:00
|
|
|
if shader.isDisposed() {
|
|
|
|
panic("ebiten: the given shader to DrawTrianglesShader must not be disposed")
|
|
|
|
}
|
|
|
|
|
2023-11-04 08:29:24 +01:00
|
|
|
if len(vertices) > graphicscommand.MaxVertexCount {
|
2023-03-23 13:22:30 +01:00
|
|
|
// The last part cannot be specified by indices. Just omit them.
|
2023-11-04 08:29:24 +01:00
|
|
|
vertices = vertices[:graphicscommand.MaxVertexCount]
|
2023-03-23 13:22:30 +01:00
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
if len(indices)%3 != 0 {
|
|
|
|
panic("ebiten: len(indices) % 3 must be 0")
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2023-03-23 13:26:58 +01:00
|
|
|
for i, idx := range indices {
|
2023-03-23 13:03:16 +01:00
|
|
|
if int(idx) >= len(vertices) {
|
2023-03-23 13:26:58 +01:00
|
|
|
panic(fmt.Sprintf("ebiten: indices[%d] must be less than len(vertices) (%d) but was %d", i, len(vertices), idx))
|
2023-03-23 13:03:16 +01:00
|
|
|
}
|
|
|
|
}
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawTrianglesShaderOptions{}
|
|
|
|
}
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
var blend graphicsdriver.Blend
|
|
|
|
if options.CompositeMode == CompositeModeCustom {
|
|
|
|
blend = options.Blend.internalBlend()
|
|
|
|
} else {
|
|
|
|
blend = options.CompositeMode.blend().internalBlend()
|
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
|
2022-12-02 13:04:03 +01:00
|
|
|
vs := i.ensureTmpVertices(len(vertices) * graphics.VertexFloatCount)
|
2022-06-11 16:06:59 +02:00
|
|
|
dst := i
|
|
|
|
src := options.Images[0]
|
2020-09-20 11:32:18 +02:00
|
|
|
for i, v := range vertices {
|
2022-06-11 16:06:59 +02:00
|
|
|
dx, dy := dst.adjustPositionF32(v.DstX, v.DstY)
|
2022-07-12 18:46:02 +02:00
|
|
|
vs[i*graphics.VertexFloatCount] = dx
|
|
|
|
vs[i*graphics.VertexFloatCount+1] = dy
|
2022-06-11 16:06:59 +02:00
|
|
|
sx, sy := v.SrcX, v.SrcY
|
|
|
|
if src != nil {
|
|
|
|
sx, sy = src.adjustPositionF32(sx, sy)
|
|
|
|
}
|
2022-07-12 18:46:02 +02:00
|
|
|
vs[i*graphics.VertexFloatCount+2] = sx
|
|
|
|
vs[i*graphics.VertexFloatCount+3] = sy
|
|
|
|
vs[i*graphics.VertexFloatCount+4] = v.ColorR
|
|
|
|
vs[i*graphics.VertexFloatCount+5] = v.ColorG
|
|
|
|
vs[i*graphics.VertexFloatCount+6] = v.ColorB
|
|
|
|
vs[i*graphics.VertexFloatCount+7] = v.ColorA
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
2023-11-03 18:45:16 +01:00
|
|
|
|
2024-07-02 09:40:53 +02:00
|
|
|
is := i.ensureTmpIndices(len(indices))
|
2023-11-03 18:45:16 +01:00
|
|
|
for i := range is {
|
|
|
|
is[i] = uint32(indices[i])
|
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
var imgs [graphics.ShaderSrcImageCount]*ui.Image
|
2023-01-19 15:42:35 +01:00
|
|
|
var imgSize image.Point
|
2020-09-19 12:17:58 +02:00
|
|
|
for i, img := range options.Images {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if img.isDisposed() {
|
2022-01-12 19:33:59 +01:00
|
|
|
panic("ebiten: the given image to DrawTrianglesShader must not be disposed")
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2023-08-27 18:07:26 +02:00
|
|
|
if shader.unit == shaderir.Texels {
|
|
|
|
if i == 0 {
|
|
|
|
imgSize = img.Bounds().Size()
|
|
|
|
} else {
|
|
|
|
// TODO: Check imgw > 0 && imgh > 0
|
|
|
|
if img.Bounds().Size() != imgSize {
|
|
|
|
panic("ebiten: all the source images must be the same size with the rectangle")
|
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2022-03-19 17:24:47 +01:00
|
|
|
imgs[i] = img.image
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
var srcRegions [graphics.ShaderSrcImageCount]image.Rectangle
|
2023-08-25 01:01:32 +02:00
|
|
|
for i, img := range options.Images {
|
2020-09-20 11:32:18 +02:00
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
2023-09-28 07:29:55 +02:00
|
|
|
srcRegions[i] = img.adjustedBounds()
|
2020-07-25 16:29:06 +02:00
|
|
|
}
|
2020-09-06 13:10:33 +02:00
|
|
|
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = i.tmpUniforms[:0]
|
|
|
|
i.tmpUniforms = shader.appendUniforms(i.tmpUniforms, options.Uniforms)
|
2022-12-03 13:47:10 +01:00
|
|
|
|
2023-11-04 10:09:47 +01:00
|
|
|
i.image.DrawTriangles(imgs, vs, is, blend, i.adjustedBounds(), srcRegions, shader.shader, i.tmpUniforms, graphicsdriver.FillRule(options.FillRule), true, options.AntiAlias)
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 09:55:39 +02:00
|
|
|
// DrawRectShaderOptions represents options for DrawRectShader.
|
2020-07-25 16:15:08 +02:00
|
|
|
type DrawRectShaderOptions struct {
|
2020-07-20 15:19:28 +02:00
|
|
|
// GeoM is a geometry matrix to draw.
|
2020-07-30 04:32:57 +02:00
|
|
|
// The default (zero) value is identity, which draws the rectangle at (0, 0).
|
2020-07-20 15:19:28 +02:00
|
|
|
GeoM GeoM
|
|
|
|
|
2022-09-30 12:28:43 +02:00
|
|
|
// ColorScale is a scale of color.
|
|
|
|
// This scaling values are passed to the `color vec4` argument of the Fragment function in a Kage program.
|
|
|
|
// The default (zero) value is identity, which is (1, 1, 1, 1).
|
|
|
|
ColorScale ColorScale
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
// CompositeMode is a composite mode to draw.
|
2022-10-16 13:02:42 +02:00
|
|
|
// The default (zero) value is CompositeModeCustom (Blend is used).
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use Blend instead.
|
2020-07-20 15:19:28 +02:00
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
// Blend is a blending way of the source color and the destination color.
|
|
|
|
// Blend is used only when CompositeMode is CompositeModeCustom.
|
|
|
|
// The default (zero) value is the regular alpha blending.
|
|
|
|
Blend Blend
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
// Uniforms is a set of uniform variables for the shader.
|
2020-09-23 09:24:41 +02:00
|
|
|
// The keys are the names of the uniform variables.
|
2022-11-18 06:08:27 +01:00
|
|
|
// The values must be a numeric type, or a slice or an array of a numeric type.
|
2020-09-23 09:24:41 +02:00
|
|
|
// If the uniform variable type is an array, a vector or a matrix,
|
2022-11-18 06:08:27 +01:00
|
|
|
// you have to specify linearly flattened values as a slice or an array.
|
|
|
|
// For example, if the uniform variable type is [4]vec4, the length will be 16.
|
2023-07-29 12:11:46 +02:00
|
|
|
//
|
|
|
|
// If a uniform variable's name doesn't exist in Uniforms, this is treated as if zero values are specified.
|
2022-11-03 07:33:09 +01:00
|
|
|
Uniforms map[string]any
|
2020-07-20 13:37:04 +02:00
|
|
|
|
|
|
|
// Images is a set of the source images.
|
2022-06-14 19:25:32 +02:00
|
|
|
// All the images' sizes must be the same.
|
2020-07-20 13:37:04 +02:00
|
|
|
Images [4]*Image
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
2022-10-31 15:36:07 +01:00
|
|
|
// Check the number of images.
|
2024-06-09 19:02:47 +02:00
|
|
|
var _ [len(DrawRectShaderOptions{}.Images)]struct{} = [graphics.ShaderSrcImageCount]struct{}{}
|
2020-07-20 15:19:28 +02:00
|
|
|
|
2020-07-25 16:15:08 +02:00
|
|
|
// DrawRectShader draws a rectangle with the specified width and height with the specified shader.
|
2020-07-20 15:19:28 +02:00
|
|
|
//
|
2022-09-23 12:08:35 +02:00
|
|
|
// For the details about the shader, see https://ebitengine.org/en/documents/shader.html.
|
2020-09-23 09:45:00 +02:00
|
|
|
//
|
2023-07-31 18:24:23 +02:00
|
|
|
// When one of the specified image is non-nil and its size is different from (width, height), DrawRectShader panics.
|
2020-07-25 16:15:08 +02:00
|
|
|
// When one of the specified image is non-nil and is disposed, DrawRectShader panics.
|
2020-07-20 15:19:28 +02:00
|
|
|
//
|
2023-07-29 11:57:24 +02:00
|
|
|
// If a specified uniform variable's length or type doesn't match with an expected one, DrawRectShader panics.
|
|
|
|
//
|
2023-09-24 08:59:58 +02:00
|
|
|
// In a shader, srcPos in Fragment represents a position in a source image.
|
|
|
|
// If no source images are specified, srcPos represents the position from (0, 0) to (width, height) in pixels.
|
|
|
|
// If the unit is pixels by a compiler directive `//kage:unit pixelss`, srcPos values are valid.
|
|
|
|
// If the unit is texels (default), srcPos values still take from (0, 0) to (width, height),
|
|
|
|
// but these are invalid since srcPos is expected to be in texels in the texel-unit mode.
|
2023-07-31 18:24:23 +02:00
|
|
|
// This behavior is preserved for backward compatibility. It is recommended to use the pixel-unit mode to avoid confusion.
|
|
|
|
//
|
2023-08-27 20:39:27 +02:00
|
|
|
// If no source images are specified, imageSrc0Size returns a valid size only when the unit is pixels,
|
2023-07-31 18:24:23 +02:00
|
|
|
// but always returns 0 when the unit is texels (default).
|
|
|
|
//
|
2024-03-13 03:52:48 +01:00
|
|
|
// Even if a result is an invalid color as a premultiplied-alpha color, i.e. an alpha value exceeds other color values,
|
|
|
|
// the value is kept and is not clamped.
|
|
|
|
//
|
2020-07-25 16:15:08 +02:00
|
|
|
// When the image i is disposed, DrawRectShader does nothing.
|
|
|
|
func (i *Image) DrawRectShader(width, height int, shader *Shader, options *DrawRectShaderOptions) {
|
2020-07-20 15:19:28 +02:00
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-11-03 16:28:14 +01:00
|
|
|
if shader.isDisposed() {
|
|
|
|
panic("ebiten: the given shader to DrawRectShader must not be disposed")
|
|
|
|
}
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
if options == nil {
|
2020-07-25 16:15:08 +02:00
|
|
|
options = &DrawRectShaderOptions{}
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
2022-10-16 13:02:42 +02:00
|
|
|
var blend graphicsdriver.Blend
|
|
|
|
if options.CompositeMode == CompositeModeCustom {
|
|
|
|
blend = options.Blend.internalBlend()
|
|
|
|
} else {
|
|
|
|
blend = options.CompositeMode.blend().internalBlend()
|
|
|
|
}
|
2020-07-20 15:19:28 +02:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
var imgs [graphics.ShaderSrcImageCount]*ui.Image
|
2020-07-20 15:19:28 +02:00
|
|
|
for i, img := range options.Images {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if img.isDisposed() {
|
2020-07-25 16:15:08 +02:00
|
|
|
panic("ebiten: the given image to DrawRectShader must not be disposed")
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
2023-01-19 15:42:35 +01:00
|
|
|
if img.Bounds().Size() != image.Pt(width, height) {
|
2020-07-20 15:19:28 +02:00
|
|
|
panic("ebiten: all the source images must be the same size with the rectangle")
|
|
|
|
}
|
2022-03-19 17:24:47 +01:00
|
|
|
imgs[i] = img.image
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
2020-07-20 13:37:04 +02:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
var srcRegions [graphics.ShaderSrcImageCount]image.Rectangle
|
2023-08-25 01:01:32 +02:00
|
|
|
for i, img := range options.Images {
|
|
|
|
if img == nil {
|
|
|
|
if shader.unit == shaderir.Pixels && i == 0 {
|
2023-08-27 20:39:27 +02:00
|
|
|
// Give the source size as pixels only when the unit is pixels so that users can get the source size via imageSrc0Size (#2166).
|
|
|
|
// With the texel mode, the imageSrc0Origin and imageSrc0Size values should be in texels so the source position in pixels would not match.
|
2023-09-28 07:29:55 +02:00
|
|
|
srcRegions[i] = image.Rect(0, 0, width, height)
|
2023-08-25 01:01:32 +02:00
|
|
|
}
|
|
|
|
continue
|
2023-07-31 18:24:23 +02:00
|
|
|
}
|
2023-09-28 07:29:55 +02:00
|
|
|
srcRegions[i] = img.adjustedBounds()
|
2020-08-10 18:11:19 +02:00
|
|
|
}
|
|
|
|
|
2023-08-26 18:40:37 +02:00
|
|
|
geoM := options.GeoM
|
2022-06-11 16:06:59 +02:00
|
|
|
if offsetX, offsetY := i.adjustPosition(0, 0); offsetX != 0 || offsetY != 0 {
|
2023-08-26 18:40:37 +02:00
|
|
|
geoM.Translate(float64(offsetX), float64(offsetY))
|
2022-06-11 16:06:59 +02:00
|
|
|
}
|
2023-08-26 18:40:37 +02:00
|
|
|
a, b, c, d, tx, ty := geoM.elements32()
|
2022-09-30 12:28:43 +02:00
|
|
|
cr, cg, cb, ca := options.ColorScale.elements()
|
2022-12-02 13:04:03 +01:00
|
|
|
vs := i.ensureTmpVertices(4 * graphics.VertexFloatCount)
|
2022-06-11 16:06:59 +02:00
|
|
|
|
2023-09-28 07:29:55 +02:00
|
|
|
// Do not use srcRegions[0].Dx() and srcRegions[0].Dy() as these might be empty.
|
2024-08-11 17:27:28 +02:00
|
|
|
graphics.QuadVerticesFromSrcAndMatrix(vs,
|
2023-09-28 07:29:55 +02:00
|
|
|
float32(srcRegions[0].Min.X), float32(srcRegions[0].Min.Y),
|
|
|
|
float32(srcRegions[0].Min.X+width), float32(srcRegions[0].Min.Y+height),
|
|
|
|
a, b, c, d, tx, ty, cr, cg, cb, ca)
|
2023-08-25 01:01:32 +02:00
|
|
|
is := graphics.QuadIndices()
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2022-12-08 16:02:04 +01:00
|
|
|
i.tmpUniforms = i.tmpUniforms[:0]
|
|
|
|
i.tmpUniforms = shader.appendUniforms(i.tmpUniforms, options.Uniforms)
|
2022-12-03 13:47:10 +01:00
|
|
|
|
2024-06-08 04:54:44 +02:00
|
|
|
i.image.DrawTriangles(imgs, vs, is, blend, i.adjustedBounds(), srcRegions, shader.shader, i.tmpUniforms, graphicsdriver.FillRuleFillAll, true, false)
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +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.
|
2018-10-23 16:27:27 +02:00
|
|
|
//
|
|
|
|
// The returned value is always *ebiten.Image.
|
|
|
|
//
|
|
|
|
// If the image is disposed, SubImage returns nil.
|
|
|
|
//
|
2021-05-13 14:23:17 +02:00
|
|
|
// A sub-image returned by SubImage can be used as a rendering source and a rendering destination.
|
|
|
|
// If a sub-image is used as a rendering source, the image is used as if it is a small image.
|
|
|
|
// If a sub-image is used as a rendering destination, the region being rendered is clipped.
|
2022-10-02 18:55:35 +02:00
|
|
|
//
|
2022-11-04 12:53:52 +01:00
|
|
|
// Successive uses of multiple various regions as rendering destination is still efficient
|
|
|
|
// when all the underlying images are the same, but some platforms like browsers might not work efficiently.
|
2018-10-23 16:27:27 +02:00
|
|
|
func (i *Image) SubImage(r image.Rectangle) image.Image {
|
|
|
|
i.copyCheck()
|
|
|
|
if i.isDisposed() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
r = r.Intersect(i.Bounds())
|
|
|
|
// Need to check Empty explicitly. See the standard image package implementations.
|
|
|
|
if r.Empty() {
|
|
|
|
r = image.ZR
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
var orig = i
|
2019-02-21 15:24:02 +01:00
|
|
|
if i.isSubImage() {
|
2020-06-13 10:10:05 +02:00
|
|
|
orig = i.original
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
img := &Image{
|
2022-03-19 17:24:47 +01:00
|
|
|
image: i.image,
|
2020-06-13 10:10:05 +02:00
|
|
|
bounds: r,
|
|
|
|
original: orig,
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-06-13 10:10:05 +02:00
|
|
|
img.addr = img
|
|
|
|
|
2018-10-23 16:27:27 +02:00
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
2016-05-16 18:03:28 +02:00
|
|
|
// Bounds returns the bounds of the image.
|
2022-08-07 18:46:45 +02:00
|
|
|
//
|
|
|
|
// Bounds implements the standard image.Image's Bounds.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2019-05-11 15:44:52 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
panic("ebiten: the image is already disposed")
|
|
|
|
}
|
2019-02-21 15:18:17 +01:00
|
|
|
return i.bounds
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
2022-08-07 18:46:45 +02:00
|
|
|
//
|
|
|
|
// ColorModel implements the standard image.Image's ColorModel.
|
2016-05-16 18:03:28 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-08-07 18:05:55 +02:00
|
|
|
// ReadPixels reads the image's pixels from the image.
|
|
|
|
//
|
2022-08-07 20:41:45 +02:00
|
|
|
// The given pixels represent RGBA pre-multiplied alpha values.
|
|
|
|
//
|
2022-08-07 18:05:55 +02:00
|
|
|
// ReadPixels loads pixels from GPU to system memory if necessary, which means that ReadPixels can be slow.
|
|
|
|
//
|
|
|
|
// ReadPixels always sets a transparent color if the image is disposed.
|
|
|
|
//
|
2022-08-07 20:41:45 +02:00
|
|
|
// len(pixels) must be 4 * (bounds width) * (bounds height).
|
|
|
|
// If len(pixels) is not correct, ReadPixels panics.
|
|
|
|
//
|
|
|
|
// ReadPixels also works on a sub-image.
|
2022-08-07 18:05:55 +02:00
|
|
|
//
|
|
|
|
// Note that an important logic should not rely on values returned by ReadPixels, since
|
|
|
|
// the returned values can include very slight differences between some machines.
|
|
|
|
//
|
|
|
|
// ReadPixels can't be called outside the main loop (ebiten.Run's updating function) starts.
|
2022-08-07 19:48:23 +02:00
|
|
|
func (i *Image) ReadPixels(pixels []byte) {
|
2022-08-07 18:05:55 +02:00
|
|
|
b := i.Bounds()
|
|
|
|
if got, want := len(pixels), 4*b.Dx()*b.Dy(); got != want {
|
2022-08-07 19:48:23 +02:00
|
|
|
panic(fmt.Sprintf("ebiten: len(pixels) must be %d but %d at ReadPixels", want, got))
|
2022-08-07 18:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
for i := range pixels {
|
|
|
|
pixels[i] = 0
|
|
|
|
}
|
2022-08-07 19:48:23 +02:00
|
|
|
return
|
2022-08-07 18:05:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-27 14:38:54 +02:00
|
|
|
i.image.ReadPixels(pixels, i.adjustedBounds())
|
2022-08-07 18:05:55 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 18:03:28 +02:00
|
|
|
// At returns the color of the image at (x, y).
|
|
|
|
//
|
2022-08-07 18:46:45 +02:00
|
|
|
// At implements the standard image.Image's At.
|
|
|
|
//
|
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
|
|
|
//
|
2020-07-20 15:19:28 +02:00
|
|
|
// Note that an important logic should not rely on values returned by At, since
|
2019-04-11 23:12:22 +02:00
|
|
|
// the returned values can include very slight differences between some machines.
|
2018-05-01 11:07:52 +02:00
|
|
|
//
|
2020-10-04 19:00:50 +02:00
|
|
|
// At can't be called outside the main loop (ebiten.Run's updating function) starts.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2021-08-21 08:22:33 +02:00
|
|
|
r, g, b, a := i.at(x, y)
|
2023-01-28 11:06:38 +01:00
|
|
|
return color.RGBA{R: r, G: g, B: b, A: a}
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2022-08-07 18:46:45 +02:00
|
|
|
// RGBA64At implements the standard image.RGBA64Image's RGBA64At.
|
2021-08-21 08:15:48 +02:00
|
|
|
//
|
|
|
|
// RGBA64At loads pixels from GPU to system memory if necessary, which means
|
|
|
|
// that RGBA64At can be slow.
|
|
|
|
//
|
|
|
|
// RGBA64At always returns a transparent color if the image is disposed.
|
|
|
|
//
|
|
|
|
// Note that an important logic should not rely on values returned by RGBA64At,
|
|
|
|
// since the returned values can include very slight differences between some machines.
|
|
|
|
//
|
|
|
|
// RGBA64At can't be called outside the main loop (ebiten.Run's updating function) starts.
|
|
|
|
func (i *Image) RGBA64At(x, y int) color.RGBA64 {
|
2021-08-21 08:22:33 +02:00
|
|
|
r, g, b, a := i.at(x, y)
|
2023-01-28 11:06:38 +01:00
|
|
|
return color.RGBA64{R: uint16(r) * 0x101, G: uint16(g) * 0x101, B: uint16(b) * 0x101, A: uint16(a) * 0x101}
|
2021-08-21 08:22:33 +02:00
|
|
|
}
|
|
|
|
|
2022-07-03 18:00:30 +02:00
|
|
|
func (i *Image) at(x, y int) (r, g, b, a byte) {
|
2021-08-21 08:22:33 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return 0, 0, 0, 0
|
|
|
|
}
|
|
|
|
if !image.Pt(x, y).In(i.Bounds()) {
|
|
|
|
return 0, 0, 0, 0
|
|
|
|
}
|
2022-09-28 16:44:27 +02:00
|
|
|
|
2022-07-03 18:00:30 +02:00
|
|
|
x, y = i.adjustPosition(x, y)
|
2022-08-07 19:48:23 +02:00
|
|
|
var pix [4]byte
|
2023-04-27 17:55:10 +02:00
|
|
|
i.image.ReadPixels(pix[:], image.Rect(x, y, x+1, y+1))
|
2022-08-07 19:48:23 +02:00
|
|
|
return pix[0], pix[1], pix[2], pix[3]
|
2021-08-21 08:15:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-13 16:39:37 +01:00
|
|
|
// Set sets the color at (x, y).
|
|
|
|
//
|
2022-08-07 18:46:45 +02:00
|
|
|
// Set implements the standard draw.Image's Set.
|
|
|
|
//
|
2024-03-13 03:52:48 +01:00
|
|
|
// Even if a result is an invalid color as a premultiplied-alpha color, i.e. an alpha value exceeds other color values,
|
|
|
|
// the value is kept and is not clamped.
|
|
|
|
//
|
2019-01-13 16:39:37 +01:00
|
|
|
// If the image is disposed, Set does nothing.
|
2019-10-11 20:09:43 +02:00
|
|
|
func (i *Image) Set(x, y int, clr color.Color) {
|
|
|
|
i.copyCheck()
|
|
|
|
if i.isDisposed() {
|
2019-01-13 16:39:37 +01:00
|
|
|
return
|
|
|
|
}
|
2019-10-11 20:09:43 +02:00
|
|
|
if !image.Pt(x, y).In(i.Bounds()) {
|
2019-02-21 15:25:41 +01:00
|
|
|
return
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
2019-10-04 17:02:52 +02:00
|
|
|
if i.isSubImage() {
|
2020-06-27 17:36:13 +02:00
|
|
|
i = i.original
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
|
|
|
|
2022-07-03 18:00:30 +02:00
|
|
|
dx, dy := i.adjustPosition(x, y)
|
|
|
|
cr, cg, cb, ca := clr.RGBA()
|
2023-09-06 14:24:01 +02:00
|
|
|
i.image.WritePixels([]byte{byte(cr >> 8), byte(cg >> 8), byte(cb >> 8), byte(ca >> 8)}, image.Rect(dx, dy, dx+1, dy+1))
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
// Dispose disposes the image data.
|
2023-01-28 11:06:38 +01:00
|
|
|
// After disposing, most of the image functions do nothing and returns meaningless values.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2019-08-20 18:43:08 +02:00
|
|
|
// Calling Dispose is not mandatory. GC automatically collects internal resources that no objects refer to.
|
|
|
|
// However, calling Dispose explicitly is helpful if memory usage matters.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2020-11-07 20:12:48 +01:00
|
|
|
// If the image is a sub-image, Dispose does nothing.
|
|
|
|
//
|
2023-11-03 07:06:22 +01:00
|
|
|
// If the image is disposed, Dispose does nothing.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.7. Use Deallocate instead.
|
2020-10-05 17:13:19 +02:00
|
|
|
func (i *Image) Dispose() {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2020-10-05 17:13:19 +02:00
|
|
|
return
|
2016-07-12 19:07:35 +02:00
|
|
|
}
|
2019-02-21 16:08:15 +01:00
|
|
|
if i.isSubImage() {
|
2020-10-05 17:13:19 +02:00
|
|
|
return
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2023-11-03 07:06:22 +01:00
|
|
|
i.image.Deallocate()
|
2022-03-19 17:24:47 +01:00
|
|
|
i.image = nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2023-11-03 07:06:22 +01:00
|
|
|
// Deallocate clears the image and deallocates the internal state of the image.
|
|
|
|
// Even after Deallocate is called, the image is still available.
|
|
|
|
// In this case, the image's internal state is allocated again.
|
|
|
|
//
|
|
|
|
// Usually, you don't have to call Deallocate since the internal state is automatically released by GC.
|
|
|
|
// However, if you are sure that the image is no longer used but not sure how this image object is referred,
|
|
|
|
// you can call Deallocate to make sure that the internal state is deallocated.
|
|
|
|
//
|
|
|
|
// If the image is a sub-image, Deallocate does nothing.
|
|
|
|
//
|
|
|
|
// If the image is disposed, Deallocate does nothing.
|
|
|
|
func (i *Image) Deallocate() {
|
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if i.isSubImage() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i.image.Deallocate()
|
|
|
|
}
|
|
|
|
|
2022-08-07 20:50:25 +02:00
|
|
|
// WritePixels replaces the pixels of the image.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2022-08-07 20:41:45 +02:00
|
|
|
// The given pixels are treated as RGBA pre-multiplied alpha values.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2022-08-07 20:41:45 +02:00
|
|
|
// len(pix) must be 4 * (bounds width) * (bounds height).
|
|
|
|
// If len(pix) is not correct, WritePixels panics.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2022-08-07 20:50:25 +02:00
|
|
|
// WritePixels also works on a sub-image.
|
2017-03-03 18:23:39 +01:00
|
|
|
//
|
2024-03-13 03:52:48 +01:00
|
|
|
// Even if a result is an invalid color as a premultiplied-alpha color, i.e. an alpha value exceeds other color values,
|
|
|
|
// the value is kept and is not clamped.
|
|
|
|
//
|
2022-08-07 20:50:25 +02:00
|
|
|
// When the image is disposed, WritePixels does nothing.
|
|
|
|
func (i *Image) WritePixels(pixels []byte) {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2020-10-05 17:16:13 +02:00
|
|
|
return
|
2020-06-13 12:03:01 +02:00
|
|
|
}
|
2020-06-30 19:56:37 +02:00
|
|
|
|
2020-07-02 19:56:37 +02:00
|
|
|
// Do not need to copy pixels here.
|
2020-07-26 05:15:23 +02:00
|
|
|
// * In internal/mipmap, pixels are copied when necessary.
|
2022-03-19 20:20:23 +01:00
|
|
|
// * In internal/atlas, pixels are copied to make its paddings.
|
2023-08-27 14:38:54 +02:00
|
|
|
i.image.WritePixels(pixels, i.adjustedBounds())
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2022-08-07 20:50:25 +02:00
|
|
|
// ReplacePixels replaces the pixels of the image.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.4. Use WritePixels instead.
|
|
|
|
func (i *Image) ReplacePixels(pixels []byte) {
|
|
|
|
i.WritePixels(pixels)
|
|
|
|
}
|
|
|
|
|
2016-02-05 15:20:41 +01:00
|
|
|
// NewImage returns an empty image.
|
|
|
|
//
|
2018-03-11 18:01:30 +01:00
|
|
|
// If width or height is less than 1 or more than device-dependent maximum size, NewImage panics.
|
2021-04-03 11:44:41 +02:00
|
|
|
//
|
2021-12-09 13:03:22 +01:00
|
|
|
// NewImage should be called only when necessary.
|
|
|
|
// For example, you should avoid to call NewImage every Update or Draw call.
|
|
|
|
// Reusing the same image by Clear is much more efficient than creating a new image.
|
|
|
|
//
|
2021-04-03 11:44:41 +02:00
|
|
|
// NewImage panics if RunGame already finishes.
|
2020-10-05 17:33:05 +02:00
|
|
|
func NewImage(width, height int) *Image {
|
2022-06-11 16:06:59 +02:00
|
|
|
return newImage(image.Rect(0, 0, width, height), atlas.ImageTypeRegular)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewImageOptions represents options for NewImage.
|
|
|
|
type NewImageOptions struct {
|
|
|
|
// Unmanaged represents whether the image is unmanaged or not.
|
|
|
|
// The default (zero) value is false, that means the image is managed.
|
|
|
|
//
|
2022-08-21 16:01:25 +02:00
|
|
|
// An unmanaged image is never on an internal automatic texture atlas.
|
2022-06-11 16:06:59 +02:00
|
|
|
// A regular image is a part of an internal texture atlas, and locating them is done automatically in Ebitengine.
|
2022-08-21 14:58:10 +02:00
|
|
|
// Unmanaged is useful when you want finer controls over the image for performance and memory reasons.
|
2022-06-11 16:06:59 +02:00
|
|
|
Unmanaged bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewImageWithOptions returns an empty image with the given bounds and the options.
|
|
|
|
//
|
|
|
|
// If width or height is less than 1 or more than device-dependent maximum size, NewImageWithOptions panics.
|
|
|
|
//
|
|
|
|
// The rendering origin position is (0, 0) of the given bounds.
|
|
|
|
// If DrawImage is called on a new image created by NewImageOptions,
|
2023-01-28 11:06:38 +01:00
|
|
|
// for example, the center of scaling and rotating is (0, 0), that might not be an upper-left position.
|
2022-06-11 16:06:59 +02:00
|
|
|
//
|
2022-06-15 04:52:34 +02:00
|
|
|
// If options is nil, the default setting is used.
|
|
|
|
//
|
2022-06-11 16:06:59 +02:00
|
|
|
// NewImageWithOptions should be called only when necessary.
|
|
|
|
// For example, you should avoid to call NewImageWithOptions every Update or Draw call.
|
|
|
|
// Reusing the same image by Clear is much more efficient than creating a new image.
|
|
|
|
//
|
|
|
|
// NewImageWithOptions panics if RunGame already finishes.
|
|
|
|
func NewImageWithOptions(bounds image.Rectangle, options *NewImageOptions) *Image {
|
|
|
|
imageType := atlas.ImageTypeRegular
|
|
|
|
if options != nil && options.Unmanaged {
|
|
|
|
imageType = atlas.ImageTypeUnmanaged
|
|
|
|
}
|
|
|
|
return newImage(bounds, imageType)
|
2022-06-07 16:57:56 +02:00
|
|
|
}
|
|
|
|
|
2022-06-11 16:06:59 +02:00
|
|
|
func newImage(bounds image.Rectangle, imageType atlas.ImageType) *Image {
|
2021-04-03 11:44:41 +02:00
|
|
|
if isRunGameEnded() {
|
|
|
|
panic(fmt.Sprintf("ebiten: NewImage cannot be called after RunGame finishes"))
|
|
|
|
}
|
2022-06-11 16:06:59 +02:00
|
|
|
|
|
|
|
width, height := bounds.Dx(), bounds.Dy()
|
2020-10-22 17:42:57 +02:00
|
|
|
if width <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: width at NewImage must be positive but %d", width))
|
|
|
|
}
|
|
|
|
if height <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: height at NewImage must be positive but %d", height))
|
|
|
|
}
|
2022-06-11 16:06:59 +02:00
|
|
|
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2023-10-14 17:06:07 +02:00
|
|
|
image: ui.Get().NewImage(width, height, imageType),
|
2022-06-11 16:06:59 +02:00
|
|
|
bounds: bounds,
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-04-05 17:35:18 +02:00
|
|
|
i.addr = i
|
2019-09-21 07:53: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
|
|
|
//
|
2018-03-11 18:01:30 +01:00
|
|
|
// If source's width or height is less than 1 or more than device-dependent maximum size, NewImageFromImage panics.
|
2021-04-03 11:44:41 +02:00
|
|
|
//
|
2021-12-09 13:03:22 +01:00
|
|
|
// NewImageFromImage should be called only when necessary.
|
|
|
|
// For example, you should avoid to call NewImageFromImage every Update or Draw call.
|
2022-08-07 20:50:25 +02:00
|
|
|
// Reusing the same image by Clear and WritePixels is much more efficient than creating a new image.
|
2021-12-09 13:03:22 +01:00
|
|
|
//
|
2021-04-03 11:44:41 +02:00
|
|
|
// NewImageFromImage panics if RunGame already finishes.
|
2022-04-01 23:10:20 +02:00
|
|
|
//
|
2022-08-21 13:02:09 +02:00
|
|
|
// The returned image's upper-left position is always (0, 0). The source's bounds are not respected.
|
2020-10-05 18:03:30 +02:00
|
|
|
func NewImageFromImage(source image.Image) *Image {
|
2022-06-15 04:52:34 +02:00
|
|
|
return NewImageFromImageWithOptions(source, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewImageFromImageOptions represents options for NewImageFromImage.
|
|
|
|
type NewImageFromImageOptions struct {
|
|
|
|
// Unmanaged represents whether the image is unmanaged or not.
|
|
|
|
// The default (zero) value is false, that means the image is managed.
|
|
|
|
//
|
2022-08-21 16:01:25 +02:00
|
|
|
// An unmanaged image is never on an internal automatic texture atlas.
|
2022-06-15 04:52:34 +02:00
|
|
|
// A regular image is a part of an internal texture atlas, and locating them is done automatically in Ebitengine.
|
2022-08-21 14:58:10 +02:00
|
|
|
// Unmanaged is useful when you want finer controls over the image for performance and memory reasons.
|
2022-06-15 04:52:34 +02:00
|
|
|
Unmanaged bool
|
|
|
|
|
|
|
|
// PreserveBounds represents whether the new image's bounds are the same as the given image.
|
2022-08-21 13:02:09 +02:00
|
|
|
// The default (zero) value is false, that means the new image's upper-left position is adjusted to (0, 0).
|
2022-06-15 04:52:34 +02:00
|
|
|
PreserveBounds bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewImageFromImageWithOptions creates a new image with the given image (source) with the given options.
|
|
|
|
//
|
|
|
|
// If source's width or height is less than 1 or more than device-dependent maximum size, NewImageFromImageWithOptions panics.
|
|
|
|
//
|
|
|
|
// If options is nil, the default setting is used.
|
|
|
|
//
|
|
|
|
// NewImageFromImageWithOptions should be called only when necessary.
|
|
|
|
// For example, you should avoid to call NewImageFromImageWithOptions every Update or Draw call.
|
2022-08-07 20:50:25 +02:00
|
|
|
// Reusing the same image by Clear and WritePixels is much more efficient than creating a new image.
|
2022-06-15 04:52:34 +02:00
|
|
|
//
|
|
|
|
// NewImageFromImageWithOptions panics if RunGame already finishes.
|
|
|
|
func NewImageFromImageWithOptions(source image.Image, options *NewImageFromImageOptions) *Image {
|
|
|
|
if options == nil {
|
|
|
|
options = &NewImageFromImageOptions{}
|
2021-04-03 11:44:41 +02:00
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2022-06-15 04:52:34 +02:00
|
|
|
var r image.Rectangle
|
|
|
|
if options.PreserveBounds {
|
|
|
|
r = source.Bounds()
|
|
|
|
} else {
|
|
|
|
size := source.Bounds().Size()
|
|
|
|
r = image.Rect(0, 0, size.X, size.Y)
|
|
|
|
}
|
|
|
|
i := NewImageWithOptions(r, &NewImageOptions{
|
|
|
|
Unmanaged: options.Unmanaged,
|
|
|
|
})
|
2022-06-15 04:54:49 +02:00
|
|
|
|
2022-05-25 15:48:19 +02:00
|
|
|
// If the given image is an Ebitengine image, use DrawImage instead of reading pixels from the source.
|
2022-04-01 23:10:20 +02:00
|
|
|
// This works even before the game loop runs.
|
|
|
|
if source, ok := source.(*Image); ok {
|
2022-06-15 04:52:34 +02:00
|
|
|
op := &DrawImageOptions{}
|
|
|
|
if options.PreserveBounds {
|
|
|
|
b := source.Bounds()
|
|
|
|
op.GeoM.Translate(float64(b.Min.X), float64(b.Min.Y))
|
|
|
|
}
|
|
|
|
i.DrawImage(source, op)
|
2022-04-01 23:10:20 +02:00
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2022-08-07 20:50:25 +02:00
|
|
|
i.WritePixels(imageToBytes(source))
|
2020-10-05 18:03:30 +02:00
|
|
|
return i
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2022-04-01 19:40:18 +02:00
|
|
|
|
2023-01-28 11:06:38 +01:00
|
|
|
// colorMToScale returns a new color matrix and color scales that equal to the given matrix in terms of the effect.
|
2022-04-01 19:40:18 +02:00
|
|
|
//
|
|
|
|
// If the given matrix is merely a scaling matrix, colorMToScale returns
|
2022-10-02 06:26:33 +02:00
|
|
|
// an identity matrix and its scaling factors in premultiplied-alpha format.
|
|
|
|
// This is useful to optimize the rendering speed by avoiding the use of the
|
|
|
|
// color matrix and instead multiplying all vertex colors by the scale.
|
2022-04-01 19:40:18 +02:00
|
|
|
func colorMToScale(colorm affine.ColorM) (newColorM affine.ColorM, r, g, b, a float32) {
|
|
|
|
if colorm.IsIdentity() {
|
|
|
|
return colorm, 1, 1, 1, 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if !colorm.ScaleOnly() {
|
|
|
|
return colorm, 1, 1, 1, 1
|
|
|
|
}
|
2022-10-02 06:26:33 +02:00
|
|
|
|
2022-04-01 19:40:18 +02:00
|
|
|
r = colorm.At(0, 0)
|
|
|
|
g = colorm.At(1, 1)
|
|
|
|
b = colorm.At(2, 2)
|
|
|
|
a = colorm.At(3, 3)
|
|
|
|
|
|
|
|
// Color matrices work on non-premultiplied colors.
|
|
|
|
// This color matrix can only make colors darker or equal,
|
|
|
|
// and thus can never invoke color clamping.
|
|
|
|
// Thus the simpler vertex color scale based shader can be used.
|
|
|
|
//
|
|
|
|
// Negative color values can become positive and out-of-range
|
|
|
|
// after applying to vertex colors below, which can make the min() in the shader kick in.
|
|
|
|
//
|
|
|
|
// Alpha values smaller than 0, combined with negative vertex colors,
|
|
|
|
// can also make the min() kick in, so that shall be ruled out too.
|
|
|
|
if r < 0 || g < 0 || b < 0 || a < 0 || r > 1 || g > 1 || b > 1 {
|
|
|
|
return colorm, 1, 1, 1, 1
|
|
|
|
}
|
|
|
|
|
2022-10-02 06:26:33 +02:00
|
|
|
return affine.ColorMIdentity{}, r * a, g * a, b * a, a
|
2022-04-01 19:40:18 +02:00
|
|
|
}
|
2022-10-13 19:22:40 +02:00
|
|
|
|
2022-12-02 13:04:03 +01:00
|
|
|
func (i *Image) ensureTmpVertices(n int) []float32 {
|
|
|
|
if cap(i.tmpVertices) < n {
|
|
|
|
i.tmpVertices = make([]float32, n)
|
|
|
|
}
|
|
|
|
return i.tmpVertices[:n]
|
|
|
|
}
|
|
|
|
|
2024-07-02 09:40:53 +02:00
|
|
|
func (i *Image) ensureTmpIndices(n int) []uint32 {
|
|
|
|
if cap(i.tmpIndices) < n {
|
|
|
|
i.tmpIndices = make([]uint32, n)
|
|
|
|
}
|
|
|
|
return i.tmpIndices[:n]
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:22:40 +02:00
|
|
|
// private implements FinalScreen.
|
|
|
|
func (*Image) private() {
|
|
|
|
}
|