mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 02:38:53 +01:00
Call gl.Flush in DrawTexture
This commit is contained in:
parent
77ba18c2de
commit
02660346c3
1
ids.go
1
ids.go
@ -73,7 +73,6 @@ func (i *ids) drawTexture(target *RenderTarget, texture *Texture, parts []Textur
|
||||
quads := textureQuads(parts, glTexture.Width(), glTexture.Height())
|
||||
w, h := target.Size()
|
||||
shader.DrawTexture(glTexture.Native(), target.texture.glTexture.Native(), w, h, projectionMatrix, quads, &geo, &color)
|
||||
gl.Flush()
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -126,4 +126,6 @@ func DrawTexture(native gl.Texture, target gl.Texture, width, height int, projec
|
||||
texCoord0AttrLocation.AttribPointer(2, gl.FLOAT, false, 0, texCoords0)
|
||||
texCoord1AttrLocation.AttribPointer(2, gl.FLOAT, false, 0, texCoords1)
|
||||
gl.DrawElements(gl.TRIANGLES, len(indicies), gl.UNSIGNED_INT, indicies)
|
||||
|
||||
gl.Flush()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user