mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
opengl: Move program.go and shader.go to opengl
This commit is contained in:
parent
ec92f61a3e
commit
6b95a5140c
@ -90,7 +90,7 @@ func (q *commandQueue) appendIndices(indices []uint16, offset uint16) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (q *commandQueue) doEnqueueDrawImageCommand(dst, src *Image, nvertices, nindices int, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, forceNewCommand bool) {
|
func (q *commandQueue) doEnqueueDrawImageCommand(dst, src *Image, nvertices, nindices int, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, forceNewCommand bool) {
|
||||||
if nindices > indicesNum {
|
if nindices > opengl.IndicesNum {
|
||||||
panic("not implemented for too many indices")
|
panic("not implemented for too many indices")
|
||||||
}
|
}
|
||||||
if !forceNewCommand && 0 < len(q.commands) {
|
if !forceNewCommand && 0 < len(q.commands) {
|
||||||
@ -114,12 +114,12 @@ func (q *commandQueue) doEnqueueDrawImageCommand(dst, src *Image, nvertices, nin
|
|||||||
|
|
||||||
// EnqueueDrawImageCommand enqueues a drawing-image command.
|
// EnqueueDrawImageCommand enqueues a drawing-image command.
|
||||||
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, indices []uint16, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) {
|
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, indices []uint16, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) {
|
||||||
if len(indices) > indicesNum {
|
if len(indices) > opengl.IndicesNum {
|
||||||
panic("not reached")
|
panic("not reached")
|
||||||
}
|
}
|
||||||
|
|
||||||
split := false
|
split := false
|
||||||
if q.tmpNumIndices+len(indices) > indicesNum {
|
if q.tmpNumIndices+len(indices) > opengl.IndicesNum {
|
||||||
q.tmpNumIndices = 0
|
q.tmpNumIndices = 0
|
||||||
q.nextIndex = 0
|
q.nextIndex = 0
|
||||||
split = true
|
split = true
|
||||||
@ -127,7 +127,7 @@ func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float
|
|||||||
|
|
||||||
q.appendVertices(vertices)
|
q.appendVertices(vertices)
|
||||||
q.appendIndices(indices, uint16(q.nextIndex))
|
q.appendIndices(indices, uint16(q.nextIndex))
|
||||||
q.nextIndex += len(vertices) * opengl.Float.SizeInBytes() / theArrayBufferLayout.totalBytes()
|
q.nextIndex += len(vertices) * opengl.Float.SizeInBytes() / opengl.ArrayBufferLayoutTotalBytes()
|
||||||
q.tmpNumIndices += len(indices)
|
q.tmpNumIndices += len(indices)
|
||||||
|
|
||||||
q.doEnqueueDrawImageCommand(dst, src, len(vertices), len(indices), color, mode, filter, split)
|
q.doEnqueueDrawImageCommand(dst, src, len(vertices), len(indices), color, mode, filter, split)
|
||||||
@ -158,10 +158,10 @@ func (q *commandQueue) Flush() {
|
|||||||
ne := 0
|
ne := 0
|
||||||
nc := 0
|
nc := 0
|
||||||
for _, c := range q.commands {
|
for _, c := range q.commands {
|
||||||
if c.NumIndices() > indicesNum {
|
if c.NumIndices() > opengl.IndicesNum {
|
||||||
panic("not reached")
|
panic("not reached")
|
||||||
}
|
}
|
||||||
if ne+c.NumIndices() > indicesNum {
|
if ne+c.NumIndices() > opengl.IndicesNum {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
nv += c.NumVertices()
|
nv += c.NumVertices()
|
||||||
@ -243,7 +243,9 @@ func (c *drawImageCommand) Exec(indexOffsetInBytes int) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
proj := f.projectionMatrix()
|
proj := f.projectionMatrix()
|
||||||
theOpenGLState.useProgram(proj, c.src.texture.native, c.dst, c.src, c.color, c.filter)
|
dw, dh := c.dst.Size()
|
||||||
|
sw, sh := c.src.Size()
|
||||||
|
opengl.UseProgram(proj, c.src.texture.native, dw, dh, sw, sh, c.color, c.filter)
|
||||||
opengl.GetContext().DrawElements(opengl.Triangles, c.nindices, indexOffsetInBytes)
|
opengl.GetContext().DrawElements(opengl.Triangles, c.nindices, indexOffsetInBytes)
|
||||||
|
|
||||||
// glFlush() might be necessary at least on MacBook Pro (a smilar problem at #419),
|
// glFlush() might be necessary at least on MacBook Pro (a smilar problem at #419),
|
||||||
@ -510,3 +512,10 @@ func (c *newScreenFramebufferImageCommand) AddNumIndices(n int) {
|
|||||||
func (c *newScreenFramebufferImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
func (c *newScreenFramebufferImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ResetGLState resets or initializes the current OpenGL state.
|
||||||
|
//
|
||||||
|
// TODO: Rename this
|
||||||
|
func ResetGLState() error {
|
||||||
|
return opengl.ResetGLState()
|
||||||
|
}
|
||||||
|
@ -71,6 +71,8 @@ func init() {
|
|||||||
dstAlpha = gl.DST_ALPHA
|
dstAlpha = gl.DST_ALPHA
|
||||||
oneMinusSrcAlpha = gl.ONE_MINUS_SRC_ALPHA
|
oneMinusSrcAlpha = gl.ONE_MINUS_SRC_ALPHA
|
||||||
oneMinusDstAlpha = gl.ONE_MINUS_DST_ALPHA
|
oneMinusDstAlpha = gl.ONE_MINUS_DST_ALPHA
|
||||||
|
|
||||||
|
initializeArrayBuferLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
type context struct {
|
type context struct {
|
||||||
|
@ -109,6 +109,8 @@ func init() {
|
|||||||
unpackAlignment = c.Get("UNPACK_ALIGNMENT")
|
unpackAlignment = c.Get("UNPACK_ALIGNMENT")
|
||||||
unsignedByte = c.Get("UNSIGNED_BYTE")
|
unsignedByte = c.Get("UNSIGNED_BYTE")
|
||||||
unsignedShort = c.Get("UNSIGNED_SHORT")
|
unsignedShort = c.Get("UNSIGNED_SHORT")
|
||||||
|
|
||||||
|
initializeArrayBuferLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
type context struct {
|
type context struct {
|
||||||
|
@ -68,6 +68,8 @@ func init() {
|
|||||||
dstAlpha = mgl.DST_ALPHA
|
dstAlpha = mgl.DST_ALPHA
|
||||||
oneMinusSrcAlpha = mgl.ONE_MINUS_SRC_ALPHA
|
oneMinusSrcAlpha = mgl.ONE_MINUS_SRC_ALPHA
|
||||||
oneMinusDstAlpha = mgl.ONE_MINUS_DST_ALPHA
|
oneMinusDstAlpha = mgl.ONE_MINUS_DST_ALPHA
|
||||||
|
|
||||||
|
initializeArrayBuferLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
type context struct {
|
type context struct {
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
package graphicscommand
|
package opengl
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -20,7 +20,6 @@ import (
|
|||||||
"github.com/hajimehoshi/ebiten/internal/affine"
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
||||||
"github.com/hajimehoshi/ebiten/internal/graphics"
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
||||||
emath "github.com/hajimehoshi/ebiten/internal/math"
|
emath "github.com/hajimehoshi/ebiten/internal/math"
|
||||||
"github.com/hajimehoshi/ebiten/internal/opengl"
|
|
||||||
"github.com/hajimehoshi/ebiten/internal/web"
|
"github.com/hajimehoshi/ebiten/internal/web"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -28,7 +27,7 @@ import (
|
|||||||
type arrayBufferLayoutPart struct {
|
type arrayBufferLayoutPart struct {
|
||||||
// TODO: This struct should belong to a program and know it.
|
// TODO: This struct should belong to a program and know it.
|
||||||
name string
|
name string
|
||||||
dataType opengl.DataType
|
dataType DataType
|
||||||
num int
|
num int
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,72 +54,78 @@ func (a *arrayBufferLayout) totalBytes() int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// newArrayBuffer creates OpenGL's buffer object for the array buffer.
|
// newArrayBuffer creates OpenGL's buffer object for the array buffer.
|
||||||
func (a *arrayBufferLayout) newArrayBuffer() opengl.Buffer {
|
func (a *arrayBufferLayout) newArrayBuffer() Buffer {
|
||||||
return opengl.GetContext().NewArrayBuffer(a.totalBytes() * indicesNum)
|
return GetContext().NewArrayBuffer(a.totalBytes() * IndicesNum)
|
||||||
}
|
}
|
||||||
|
|
||||||
// enable binds the array buffer the given program to use the array buffer.
|
// enable binds the array buffer the given program to use the array buffer.
|
||||||
func (a *arrayBufferLayout) enable(program opengl.Program) {
|
func (a *arrayBufferLayout) enable(program Program) {
|
||||||
for _, p := range a.parts {
|
for _, p := range a.parts {
|
||||||
opengl.GetContext().EnableVertexAttribArray(program, p.name)
|
GetContext().EnableVertexAttribArray(program, p.name)
|
||||||
}
|
}
|
||||||
total := a.totalBytes()
|
total := a.totalBytes()
|
||||||
offset := 0
|
offset := 0
|
||||||
for _, p := range a.parts {
|
for _, p := range a.parts {
|
||||||
opengl.GetContext().VertexAttribPointer(program, p.name, p.num, p.dataType, total, offset)
|
GetContext().VertexAttribPointer(program, p.name, p.num, p.dataType, total, offset)
|
||||||
offset += p.dataType.SizeInBytes() * p.num
|
offset += p.dataType.SizeInBytes() * p.num
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// disable stops using the array buffer.
|
// disable stops using the array buffer.
|
||||||
func (a *arrayBufferLayout) disable(program opengl.Program) {
|
func (a *arrayBufferLayout) disable(program Program) {
|
||||||
// TODO: Disabling should be done in reversed order?
|
// TODO: Disabling should be done in reversed order?
|
||||||
for _, p := range a.parts {
|
for _, p := range a.parts {
|
||||||
opengl.GetContext().DisableVertexAttribArray(program, p.name)
|
GetContext().DisableVertexAttribArray(program, p.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
// theArrayBufferLayout is the array buffer layout for Ebiten.
|
||||||
// theArrayBufferLayout is the array buffer layout for Ebiten.
|
var theArrayBufferLayout arrayBufferLayout
|
||||||
|
|
||||||
|
func initializeArrayBuferLayout() {
|
||||||
theArrayBufferLayout = arrayBufferLayout{
|
theArrayBufferLayout = arrayBufferLayout{
|
||||||
// Note that GL_MAX_VERTEX_ATTRIBS is at least 16.
|
// Note that GL_MAX_VERTEX_ATTRIBS is at least 16.
|
||||||
parts: []arrayBufferLayoutPart{
|
parts: []arrayBufferLayoutPart{
|
||||||
{
|
{
|
||||||
name: "vertex",
|
name: "vertex",
|
||||||
dataType: opengl.Float,
|
dataType: Float,
|
||||||
num: 2,
|
num: 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "tex_coord",
|
name: "tex_coord",
|
||||||
dataType: opengl.Float,
|
dataType: Float,
|
||||||
num: 4,
|
num: 4,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "color_scale",
|
name: "color_scale",
|
||||||
dataType: opengl.Float,
|
dataType: Float,
|
||||||
num: 4,
|
num: 4,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
|
|
||||||
// openGLState is a state for OpenGL.
|
func ArrayBufferLayoutTotalBytes() int {
|
||||||
|
return theArrayBufferLayout.totalBytes()
|
||||||
|
}
|
||||||
|
|
||||||
|
// openGLState is a state for
|
||||||
type openGLState struct {
|
type openGLState struct {
|
||||||
// arrayBuffer is OpenGL's array buffer (vertices data).
|
// arrayBuffer is OpenGL's array buffer (vertices data).
|
||||||
arrayBuffer opengl.Buffer
|
arrayBuffer Buffer
|
||||||
|
|
||||||
// elementArrayBuffer is OpenGL's element array buffer (indices data).
|
// elementArrayBuffer is OpenGL's element array buffer (indices data).
|
||||||
elementArrayBuffer opengl.Buffer
|
elementArrayBuffer Buffer
|
||||||
|
|
||||||
// programNearest is OpenGL's program for rendering a texture with nearest filter.
|
// programNearest is OpenGL's program for rendering a texture with nearest filter.
|
||||||
programNearest opengl.Program
|
programNearest Program
|
||||||
|
|
||||||
// programLinear is OpenGL's program for rendering a texture with linear filter.
|
// programLinear is OpenGL's program for rendering a texture with linear filter.
|
||||||
programLinear opengl.Program
|
programLinear Program
|
||||||
|
|
||||||
programScreen opengl.Program
|
programScreen Program
|
||||||
|
|
||||||
lastProgram opengl.Program
|
lastProgram Program
|
||||||
lastProjectionMatrix []float32
|
lastProjectionMatrix []float32
|
||||||
lastColorMatrix []float32
|
lastColorMatrix []float32
|
||||||
lastColorMatrixTranslation []float32
|
lastColorMatrixTranslation []float32
|
||||||
@ -132,13 +137,13 @@ var (
|
|||||||
// theOpenGLState is the OpenGL state in the current process.
|
// theOpenGLState is the OpenGL state in the current process.
|
||||||
theOpenGLState openGLState
|
theOpenGLState openGLState
|
||||||
|
|
||||||
zeroBuffer opengl.Buffer
|
zeroBuffer Buffer
|
||||||
zeroProgram opengl.Program
|
zeroProgram Program
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
indicesNum = (1 << 16) / 3 * 3 // Adjust num for triangles.
|
IndicesNum = (1 << 16) / 3 * 3 // Adjust num for triangles.
|
||||||
maxTriangles = indicesNum / 3
|
maxTriangles = IndicesNum / 3
|
||||||
maxQuads = maxTriangles / 2
|
maxQuads = maxTriangles / 2
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -149,7 +154,7 @@ func ResetGLState() error {
|
|||||||
|
|
||||||
// reset resets or initializes the OpenGL state.
|
// reset resets or initializes the OpenGL state.
|
||||||
func (s *openGLState) reset() error {
|
func (s *openGLState) reset() error {
|
||||||
if err := opengl.GetContext().Reset(); err != nil {
|
if err := GetContext().Reset(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,51 +169,51 @@ func (s *openGLState) reset() error {
|
|||||||
// However, it is not assumed that reset is called only when context lost happens.
|
// However, it is not assumed that reset is called only when context lost happens.
|
||||||
// Let's delete them explicitly.
|
// Let's delete them explicitly.
|
||||||
if s.programNearest != zeroProgram {
|
if s.programNearest != zeroProgram {
|
||||||
opengl.GetContext().DeleteProgram(s.programNearest)
|
GetContext().DeleteProgram(s.programNearest)
|
||||||
}
|
}
|
||||||
if s.programLinear != zeroProgram {
|
if s.programLinear != zeroProgram {
|
||||||
opengl.GetContext().DeleteProgram(s.programLinear)
|
GetContext().DeleteProgram(s.programLinear)
|
||||||
}
|
}
|
||||||
if s.programScreen != zeroProgram {
|
if s.programScreen != zeroProgram {
|
||||||
opengl.GetContext().DeleteProgram(s.programScreen)
|
GetContext().DeleteProgram(s.programScreen)
|
||||||
}
|
}
|
||||||
|
|
||||||
// On browsers (at least Chrome), buffers are already detached from the context
|
// On browsers (at least Chrome), buffers are already detached from the context
|
||||||
// and must not be deleted by DeleteBuffer.
|
// and must not be deleted by DeleteBuffer.
|
||||||
if !web.IsBrowser() {
|
if !web.IsBrowser() {
|
||||||
if s.arrayBuffer != zeroBuffer {
|
if s.arrayBuffer != zeroBuffer {
|
||||||
opengl.GetContext().DeleteBuffer(s.arrayBuffer)
|
GetContext().DeleteBuffer(s.arrayBuffer)
|
||||||
}
|
}
|
||||||
if s.elementArrayBuffer != zeroBuffer {
|
if s.elementArrayBuffer != zeroBuffer {
|
||||||
opengl.GetContext().DeleteBuffer(s.elementArrayBuffer)
|
GetContext().DeleteBuffer(s.elementArrayBuffer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
shaderVertexModelviewNative, err := opengl.GetContext().NewShader(opengl.VertexShader, shader(shaderVertexModelview))
|
shaderVertexModelviewNative, err := GetContext().NewShader(VertexShader, shader(shaderVertexModelview))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
||||||
}
|
}
|
||||||
defer opengl.GetContext().DeleteShader(shaderVertexModelviewNative)
|
defer GetContext().DeleteShader(shaderVertexModelviewNative)
|
||||||
|
|
||||||
shaderFragmentNearestNative, err := opengl.GetContext().NewShader(opengl.FragmentShader, shader(shaderFragmentNearest))
|
shaderFragmentNearestNative, err := GetContext().NewShader(FragmentShader, shader(shaderFragmentNearest))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
||||||
}
|
}
|
||||||
defer opengl.GetContext().DeleteShader(shaderFragmentNearestNative)
|
defer GetContext().DeleteShader(shaderFragmentNearestNative)
|
||||||
|
|
||||||
shaderFragmentLinearNative, err := opengl.GetContext().NewShader(opengl.FragmentShader, shader(shaderFragmentLinear))
|
shaderFragmentLinearNative, err := GetContext().NewShader(FragmentShader, shader(shaderFragmentLinear))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
||||||
}
|
}
|
||||||
defer opengl.GetContext().DeleteShader(shaderFragmentLinearNative)
|
defer GetContext().DeleteShader(shaderFragmentLinearNative)
|
||||||
|
|
||||||
shaderFragmentScreenNative, err := opengl.GetContext().NewShader(opengl.FragmentShader, shader(shaderFragmentScreen))
|
shaderFragmentScreenNative, err := GetContext().NewShader(FragmentShader, shader(shaderFragmentScreen))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
panic(fmt.Sprintf("graphics: shader compiling error:\n%s", err))
|
||||||
}
|
}
|
||||||
defer opengl.GetContext().DeleteShader(shaderFragmentScreenNative)
|
defer GetContext().DeleteShader(shaderFragmentScreenNative)
|
||||||
|
|
||||||
s.programNearest, err = opengl.GetContext().NewProgram([]opengl.Shader{
|
s.programNearest, err = GetContext().NewProgram([]Shader{
|
||||||
shaderVertexModelviewNative,
|
shaderVertexModelviewNative,
|
||||||
shaderFragmentNearestNative,
|
shaderFragmentNearestNative,
|
||||||
})
|
})
|
||||||
@ -216,7 +221,7 @@ func (s *openGLState) reset() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
s.programLinear, err = opengl.GetContext().NewProgram([]opengl.Shader{
|
s.programLinear, err = GetContext().NewProgram([]Shader{
|
||||||
shaderVertexModelviewNative,
|
shaderVertexModelviewNative,
|
||||||
shaderFragmentLinearNative,
|
shaderFragmentLinearNative,
|
||||||
})
|
})
|
||||||
@ -224,7 +229,7 @@ func (s *openGLState) reset() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
s.programScreen, err = opengl.GetContext().NewProgram([]opengl.Shader{
|
s.programScreen, err = GetContext().NewProgram([]Shader{
|
||||||
shaderVertexModelviewNative,
|
shaderVertexModelviewNative,
|
||||||
shaderFragmentScreenNative,
|
shaderFragmentScreenNative,
|
||||||
})
|
})
|
||||||
@ -237,7 +242,7 @@ func (s *openGLState) reset() error {
|
|||||||
// Note that the indices passed to NewElementArrayBuffer is not under GC management
|
// Note that the indices passed to NewElementArrayBuffer is not under GC management
|
||||||
// in opengl package due to unsafe-way.
|
// in opengl package due to unsafe-way.
|
||||||
// See NewElementArrayBuffer in context_mobile.go.
|
// See NewElementArrayBuffer in context_mobile.go.
|
||||||
s.elementArrayBuffer = opengl.GetContext().NewElementArrayBuffer(indicesNum * 2)
|
s.elementArrayBuffer = GetContext().NewElementArrayBuffer(IndicesNum * 2)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -255,11 +260,15 @@ func areSameFloat32Array(a, b []float32) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// useProgram uses the program (programTexture).
|
func UseProgram(proj []float32, texture Texture, dstW, dstH, srcW, srcH int, colorM *affine.ColorM, filter graphics.Filter) {
|
||||||
func (s *openGLState) useProgram(proj []float32, texture opengl.Texture, dst, src *Image, colorM *affine.ColorM, filter graphics.Filter) {
|
theOpenGLState.useProgram(proj, texture, dstW, dstH, srcW, srcH, colorM, filter)
|
||||||
c := opengl.GetContext()
|
}
|
||||||
|
|
||||||
var program opengl.Program
|
// useProgram uses the program (programTexture).
|
||||||
|
func (s *openGLState) useProgram(proj []float32, texture Texture, dstW, dstH, srcW, srcH int, colorM *affine.ColorM, filter graphics.Filter) {
|
||||||
|
c := GetContext()
|
||||||
|
|
||||||
|
var program Program
|
||||||
switch filter {
|
switch filter {
|
||||||
case graphics.FilterNearest:
|
case graphics.FilterNearest:
|
||||||
program = s.programNearest
|
program = s.programNearest
|
||||||
@ -279,8 +288,8 @@ func (s *openGLState) useProgram(proj []float32, texture opengl.Texture, dst, sr
|
|||||||
theArrayBufferLayout.enable(program)
|
theArrayBufferLayout.enable(program)
|
||||||
|
|
||||||
if s.lastProgram == zeroProgram {
|
if s.lastProgram == zeroProgram {
|
||||||
c.BindBuffer(opengl.ArrayBuffer, s.arrayBuffer)
|
c.BindBuffer(ArrayBuffer, s.arrayBuffer)
|
||||||
c.BindBuffer(opengl.ElementArrayBuffer, s.elementArrayBuffer)
|
c.BindBuffer(ElementArrayBuffer, s.elementArrayBuffer)
|
||||||
c.UniformInt(program, "texture", 0)
|
c.UniformInt(program, "texture", 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -321,9 +330,8 @@ func (s *openGLState) useProgram(proj []float32, texture opengl.Texture, dst, sr
|
|||||||
s.lastColorMatrixTranslation = esTranslate
|
s.lastColorMatrixTranslation = esTranslate
|
||||||
}
|
}
|
||||||
|
|
||||||
sw, sh := src.Size()
|
sw := emath.NextPowerOf2Int(srcW)
|
||||||
sw = emath.NextPowerOf2Int(sw)
|
sh := emath.NextPowerOf2Int(srcH)
|
||||||
sh = emath.NextPowerOf2Int(sh)
|
|
||||||
|
|
||||||
if s.lastSourceWidth != sw || s.lastSourceHeight != sh {
|
if s.lastSourceWidth != sw || s.lastSourceHeight != sh {
|
||||||
c.UniformFloats(program, "source_size", []float32{float32(sw), float32(sh)})
|
c.UniformFloats(program, "source_size", []float32{float32(sw), float32(sh)})
|
||||||
@ -332,9 +340,7 @@ func (s *openGLState) useProgram(proj []float32, texture opengl.Texture, dst, sr
|
|||||||
}
|
}
|
||||||
|
|
||||||
if program == s.programScreen {
|
if program == s.programScreen {
|
||||||
sw, _ := src.Size()
|
scale := float32(dstW) / float32(srcW)
|
||||||
dw, _ := dst.Size()
|
|
||||||
scale := float32(dw) / float32(sw)
|
|
||||||
c.UniformFloat(program, "scale", scale)
|
c.UniformFloat(program, "scale", scale)
|
||||||
}
|
}
|
||||||
|
|
@ -12,7 +12,7 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
package graphicscommand
|
package opengl
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
Loading…
Reference in New Issue
Block a user