mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
Bug fix: Scale and Translate
This commit is contained in:
parent
ab2b884c49
commit
c53695eb56
10
colorm.go
10
colorm.go
@ -83,10 +83,12 @@ func (c *ColorM) Scale(r, g, b, a float64) {
|
||||
if !c.initialized {
|
||||
*c = colorMI
|
||||
}
|
||||
c.es[0][0] *= r
|
||||
c.es[1][1] *= g
|
||||
c.es[2][2] *= b
|
||||
c.es[3][3] *= a
|
||||
for i := 0; i < ColorMDim; i++ {
|
||||
c.es[0][i] *= r
|
||||
c.es[1][i] *= g
|
||||
c.es[2][i] *= b
|
||||
c.es[3][i] *= a
|
||||
}
|
||||
}
|
||||
|
||||
func (c *ColorM) Translate(r, g, b, a float64) {
|
||||
|
Loading…
Reference in New Issue
Block a user