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
|
|
|
|
2018-10-29 17:27:31 +01:00
|
|
|
package opengl
|
2013-10-26 18:56:58 +02:00
|
|
|
|
|
|
|
import (
|
2016-05-10 17:49:31 +02:00
|
|
|
"fmt"
|
2021-06-26 10:04:00 +02:00
|
|
|
"runtime"
|
2016-05-10 17:49:31 +02:00
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/shaderir"
|
2015-01-17 04:45:19 +01:00
|
|
|
)
|
|
|
|
|
2020-11-21 15:14:43 +01:00
|
|
|
const floatSizeInBytes = 4
|
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// arrayBufferLayoutPart is a part of an array buffer layout.
|
2016-10-17 03:36:33 +02:00
|
|
|
type arrayBufferLayoutPart struct {
|
2016-10-22 09:57:09 +02:00
|
|
|
// TODO: This struct should belong to a program and know it.
|
2018-11-05 17:13:55 +01:00
|
|
|
name string
|
|
|
|
num int
|
2016-10-17 03:03:25 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// arrayBufferLayout is an array buffer layout.
|
|
|
|
//
|
|
|
|
// An array buffer in OpenGL is a buffer representing vertices and
|
|
|
|
// is passed to a vertex shader.
|
2016-10-17 03:36:33 +02:00
|
|
|
type arrayBufferLayout struct {
|
|
|
|
parts []arrayBufferLayoutPart
|
2016-10-28 18:07:19 +02:00
|
|
|
total int
|
2016-10-17 03:03:25 +02:00
|
|
|
}
|
|
|
|
|
2019-02-16 06:03:21 +01:00
|
|
|
func (a *arrayBufferLayout) names() []string {
|
|
|
|
ns := make([]string, len(a.parts))
|
|
|
|
for i, p := range a.parts {
|
|
|
|
ns[i] = p.name
|
|
|
|
}
|
|
|
|
return ns
|
|
|
|
}
|
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// totalBytes returns the size in bytes for one element of the array buffer.
|
2016-10-28 18:07:19 +02:00
|
|
|
func (a *arrayBufferLayout) totalBytes() int {
|
|
|
|
if a.total != 0 {
|
|
|
|
return a.total
|
|
|
|
}
|
2016-10-22 20:12:11 +02:00
|
|
|
t := 0
|
2016-10-17 03:36:33 +02:00
|
|
|
for _, p := range a.parts {
|
2020-11-21 15:14:43 +01:00
|
|
|
t += floatSizeInBytes * p.num
|
2016-10-17 03:36:33 +02:00
|
|
|
}
|
2016-10-28 18:07:19 +02:00
|
|
|
a.total = t
|
|
|
|
return a.total
|
2016-10-22 20:12:11 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// newArrayBuffer creates OpenGL's buffer object for the array buffer.
|
2018-11-10 19:37:37 +01:00
|
|
|
func (a *arrayBufferLayout) newArrayBuffer(context *context) buffer {
|
2022-07-12 18:46:02 +02:00
|
|
|
return context.newArrayBuffer(a.totalBytes() * graphics.IndicesCount)
|
2016-10-17 03:03:25 +02:00
|
|
|
}
|
|
|
|
|
2020-11-29 15:02:22 +01:00
|
|
|
// enable starts using the array buffer.
|
|
|
|
func (a *arrayBufferLayout) enable(context *context) {
|
2019-02-16 06:03:21 +01:00
|
|
|
for i := range a.parts {
|
2020-11-29 15:02:22 +01:00
|
|
|
context.enableVertexAttribArray(i)
|
2016-10-17 03:36:33 +02:00
|
|
|
}
|
2016-10-28 18:07:19 +02:00
|
|
|
total := a.totalBytes()
|
2016-10-17 03:36:33 +02:00
|
|
|
offset := 0
|
2019-02-16 06:03:21 +01:00
|
|
|
for i, p := range a.parts {
|
2020-11-29 15:02:22 +01:00
|
|
|
context.vertexAttribPointer(i, p.num, total, offset)
|
2020-11-21 15:14:43 +01:00
|
|
|
offset += floatSizeInBytes * p.num
|
2016-10-17 03:36:33 +02:00
|
|
|
}
|
2016-10-17 03:03:25 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// disable stops using the array buffer.
|
2020-11-29 15:02:22 +01:00
|
|
|
func (a *arrayBufferLayout) disable(context *context) {
|
2016-10-17 03:36:33 +02:00
|
|
|
// TODO: Disabling should be done in reversed order?
|
2019-02-16 06:03:21 +01:00
|
|
|
for i := range a.parts {
|
2020-11-29 15:02:22 +01:00
|
|
|
context.disableVertexAttribArray(i)
|
2016-10-17 03:36:33 +02:00
|
|
|
}
|
2016-10-17 03:03:25 +02:00
|
|
|
}
|
|
|
|
|
2022-08-29 04:16:39 +02:00
|
|
|
// theArrayBufferLayout is the array buffer layout for Ebitengine.
|
2018-12-25 15:58:01 +01:00
|
|
|
var theArrayBufferLayout = arrayBufferLayout{
|
|
|
|
// Note that GL_MAX_VERTEX_ATTRIBS is at least 16.
|
|
|
|
parts: []arrayBufferLayoutPart{
|
|
|
|
{
|
2020-07-19 21:06:35 +02:00
|
|
|
name: "A0",
|
2018-12-25 15:58:01 +01:00
|
|
|
num: 2,
|
2016-10-17 03:36:33 +02:00
|
|
|
},
|
2018-12-25 15:58:01 +01:00
|
|
|
{
|
2020-07-19 21:06:35 +02:00
|
|
|
name: "A1",
|
2018-12-25 15:58:01 +01:00
|
|
|
num: 2,
|
|
|
|
},
|
|
|
|
{
|
2020-07-19 21:06:35 +02:00
|
|
|
name: "A2",
|
2018-12-25 15:58:01 +01:00
|
|
|
num: 4,
|
|
|
|
},
|
|
|
|
},
|
2018-10-29 17:27:31 +01:00
|
|
|
}
|
2016-10-17 03:03:25 +02:00
|
|
|
|
2018-11-05 18:34:52 +01:00
|
|
|
func init() {
|
2022-07-12 18:46:02 +02:00
|
|
|
vertexFloatCount := theArrayBufferLayout.totalBytes() / floatSizeInBytes
|
|
|
|
if graphics.VertexFloatCount != vertexFloatCount {
|
|
|
|
panic(fmt.Sprintf("vertex float num must be %d but %d", graphics.VertexFloatCount, vertexFloatCount))
|
2018-11-05 18:34:52 +01:00
|
|
|
}
|
2018-10-29 17:27:31 +01:00
|
|
|
}
|
|
|
|
|
2018-10-29 17:31:09 +01:00
|
|
|
// openGLState is a state for
|
2016-05-14 19:29:54 +02:00
|
|
|
type openGLState struct {
|
2017-09-24 15:56:50 +02:00
|
|
|
// arrayBuffer is OpenGL's array buffer (vertices data).
|
2018-10-29 17:52:59 +01:00
|
|
|
arrayBuffer buffer
|
2017-09-24 15:56:50 +02:00
|
|
|
|
|
|
|
// elementArrayBuffer is OpenGL's element array buffer (indices data).
|
2018-10-29 17:52:59 +01:00
|
|
|
elementArrayBuffer buffer
|
2017-09-24 15:56:50 +02:00
|
|
|
|
2020-05-17 16:04:13 +02:00
|
|
|
lastProgram program
|
2022-03-12 19:42:10 +01:00
|
|
|
lastUniforms map[string][]float32
|
2020-05-17 16:04:13 +02:00
|
|
|
lastActiveTexture int
|
2016-05-14 19:29:54 +02:00
|
|
|
}
|
2013-10-26 18:56:58 +02:00
|
|
|
|
2016-06-04 18:55:28 +02:00
|
|
|
var (
|
2018-10-29 17:52:59 +01:00
|
|
|
zeroBuffer buffer
|
|
|
|
zeroProgram program
|
2016-06-04 18:55:28 +02:00
|
|
|
)
|
2013-10-26 18:56:58 +02:00
|
|
|
|
2017-09-24 15:56:50 +02:00
|
|
|
// reset resets or initializes the OpenGL state.
|
2018-11-10 19:37:37 +01:00
|
|
|
func (s *openGLState) reset(context *context) error {
|
|
|
|
if err := context.reset(); err != nil {
|
2016-08-01 19:23:23 +02:00
|
|
|
return err
|
|
|
|
}
|
2018-03-09 03:03:55 +01:00
|
|
|
|
2016-05-14 21:05:57 +02:00
|
|
|
s.lastProgram = zeroProgram
|
2021-08-13 16:44:26 +02:00
|
|
|
context.useProgram(zeroProgram)
|
2021-10-29 19:25:37 +02:00
|
|
|
for key := range s.lastUniforms {
|
|
|
|
delete(s.lastUniforms, key)
|
|
|
|
}
|
2016-05-14 21:05:57 +02:00
|
|
|
|
2018-03-01 17:01:27 +01:00
|
|
|
// On browsers (at least Chrome), buffers are already detached from the context
|
|
|
|
// and must not be deleted by DeleteBuffer.
|
2021-06-26 10:04:00 +02:00
|
|
|
if runtime.GOOS != "js" {
|
2019-12-18 16:03:35 +01:00
|
|
|
if !s.arrayBuffer.equal(zeroBuffer) {
|
2018-11-10 19:37:37 +01:00
|
|
|
context.deleteBuffer(s.arrayBuffer)
|
2018-03-01 17:01:27 +01:00
|
|
|
}
|
2019-12-18 16:03:35 +01:00
|
|
|
if !s.elementArrayBuffer.equal(zeroBuffer) {
|
2018-11-10 19:37:37 +01:00
|
|
|
context.deleteBuffer(s.elementArrayBuffer)
|
2018-03-01 17:01:27 +01:00
|
|
|
}
|
2017-09-24 16:41:37 +02:00
|
|
|
}
|
|
|
|
|
2018-11-10 19:37:37 +01:00
|
|
|
s.arrayBuffer = theArrayBufferLayout.newArrayBuffer(context)
|
2014-12-31 09:45:23 +01:00
|
|
|
|
2018-03-04 09:57:50 +01:00
|
|
|
// Note that the indices passed to NewElementArrayBuffer is not under GC management
|
|
|
|
// in opengl package due to unsafe-way.
|
|
|
|
// See NewElementArrayBuffer in context_mobile.go.
|
2022-07-12 18:46:02 +02:00
|
|
|
s.elementArrayBuffer = context.newElementArrayBuffer(graphics.IndicesCount * 2)
|
2014-12-31 09:45:23 +01:00
|
|
|
|
2014-12-31 09:53:04 +01:00
|
|
|
return nil
|
2013-10-26 18:56:58 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 17:06:45 +02:00
|
|
|
// areSameFloat32Array returns a boolean indicating if a and b are deeply equal.
|
2015-02-18 03:30:24 +01:00
|
|
|
func areSameFloat32Array(a, b []float32) bool {
|
|
|
|
if len(a) != len(b) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for i := 0; i < len(a); i++ {
|
|
|
|
if a[i] != b[i] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-05-26 15:50:33 +02:00
|
|
|
type uniformVariable struct {
|
2021-10-29 19:25:37 +02:00
|
|
|
name string
|
2022-03-12 19:42:10 +01:00
|
|
|
value []float32
|
2021-10-29 19:25:37 +02:00
|
|
|
typ shaderir.Type
|
2020-05-26 15:50:33 +02:00
|
|
|
}
|
|
|
|
|
2020-07-17 18:09:58 +02:00
|
|
|
type textureVariable struct {
|
|
|
|
valid bool
|
|
|
|
native textureNative
|
|
|
|
}
|
|
|
|
|
2021-10-30 22:40:44 +02:00
|
|
|
func (g *Graphics) textureVariableName(idx int) string {
|
|
|
|
if v, ok := g.textureVariableNameCache[idx]; ok {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
if g.textureVariableNameCache == nil {
|
|
|
|
g.textureVariableNameCache = map[int]string{}
|
|
|
|
}
|
|
|
|
name := fmt.Sprintf("T%d", idx)
|
|
|
|
g.textureVariableNameCache[idx] = name
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2018-11-06 17:59:14 +01:00
|
|
|
// useProgram uses the program (programTexture).
|
2022-07-12 18:46:02 +02:00
|
|
|
func (g *Graphics) useProgram(program program, uniforms []uniformVariable, textures [graphics.ShaderImageCount]textureVariable) error {
|
2020-04-04 10:20:08 +02:00
|
|
|
if !g.state.lastProgram.equal(program) {
|
|
|
|
g.context.useProgram(program)
|
|
|
|
if g.state.lastProgram.equal(zeroProgram) {
|
2020-11-29 15:02:22 +01:00
|
|
|
theArrayBufferLayout.enable(&g.context)
|
2020-11-21 14:59:30 +01:00
|
|
|
g.context.bindArrayBuffer(g.state.arrayBuffer)
|
|
|
|
g.context.bindElementArrayBuffer(g.state.elementArrayBuffer)
|
2018-06-03 17:13:23 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 10:20:08 +02:00
|
|
|
g.state.lastProgram = program
|
2021-01-25 16:45:17 +01:00
|
|
|
for k := range g.state.lastUniforms {
|
|
|
|
delete(g.state.lastUniforms, k)
|
|
|
|
}
|
2020-05-17 16:04:13 +02:00
|
|
|
g.state.lastActiveTexture = 0
|
|
|
|
g.context.activeTexture(0)
|
2014-12-20 10:07:25 +01:00
|
|
|
}
|
2015-01-17 04:45:19 +01:00
|
|
|
|
2020-05-26 15:50:33 +02:00
|
|
|
for _, u := range uniforms {
|
2022-07-12 18:52:15 +02:00
|
|
|
if got, expected := len(u.value), u.typ.FloatCount(); got != expected {
|
2022-03-12 19:42:10 +01:00
|
|
|
// Copy a shaderir.Type value once. Do not pass u.typ directly to fmt.Errorf arguments, or
|
|
|
|
// the value u would be allocated on heap.
|
|
|
|
typ := u.typ
|
|
|
|
return fmt.Errorf("opengl: length of a uniform variables %s (%s) doesn't match: expected %d but %d", u.name, typ.String(), expected, got)
|
|
|
|
}
|
2020-07-30 04:27:36 +02:00
|
|
|
|
2022-03-12 19:42:10 +01:00
|
|
|
cached, ok := g.state.lastUniforms[u.name]
|
|
|
|
if ok && areSameFloat32Array(cached, u.value) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
g.context.uniformFloats(program, u.name, u.value, u.typ)
|
|
|
|
if g.state.lastUniforms == nil {
|
|
|
|
g.state.lastUniforms = map[string][]float32{}
|
2019-02-16 07:14:48 +01:00
|
|
|
}
|
2022-03-12 19:42:10 +01:00
|
|
|
g.state.lastUniforms[u.name] = u.value
|
2017-12-11 15:07:01 +01:00
|
|
|
}
|
2020-07-05 20:36:15 +02:00
|
|
|
|
2020-07-18 20:21:47 +02:00
|
|
|
var idx int
|
|
|
|
loop:
|
2020-07-05 20:36:15 +02:00
|
|
|
for i, t := range textures {
|
2020-07-17 18:09:58 +02:00
|
|
|
if !t.valid {
|
|
|
|
continue
|
|
|
|
}
|
2020-07-18 20:21:47 +02:00
|
|
|
|
|
|
|
// If the texture is already bound, set the texture variable to point to the texture.
|
|
|
|
// Rebinding the same texture seems problematic (#1193).
|
2021-10-29 17:13:57 +02:00
|
|
|
for _, at := range g.activatedTextures {
|
2020-07-18 20:21:47 +02:00
|
|
|
if t.native.equal(at.textureNative) {
|
2021-10-30 22:40:44 +02:00
|
|
|
g.context.uniformInt(program, g.textureVariableName(i), at.index)
|
2020-07-18 20:21:47 +02:00
|
|
|
continue loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 17:13:57 +02:00
|
|
|
g.activatedTextures = append(g.activatedTextures, activatedTexture{
|
2020-07-18 20:21:47 +02:00
|
|
|
textureNative: t.native,
|
|
|
|
index: idx,
|
|
|
|
})
|
2021-10-30 22:40:44 +02:00
|
|
|
g.context.uniformInt(program, g.textureVariableName(i), idx)
|
2020-07-18 20:21:47 +02:00
|
|
|
if g.state.lastActiveTexture != idx {
|
|
|
|
g.context.activeTexture(idx)
|
|
|
|
g.state.lastActiveTexture = idx
|
2020-07-05 20:36:15 +02:00
|
|
|
}
|
2020-07-18 20:21:47 +02:00
|
|
|
|
2020-07-05 20:36:15 +02:00
|
|
|
// Apparently, a texture must be bound every time. The cache is not used here.
|
2020-07-17 18:09:58 +02:00
|
|
|
g.context.bindTexture(t.native)
|
2020-07-18 20:21:47 +02:00
|
|
|
|
|
|
|
idx++
|
2020-07-05 20:36:15 +02:00
|
|
|
}
|
2020-07-05 18:55:46 +02:00
|
|
|
|
2021-10-29 17:13:57 +02:00
|
|
|
for i := range g.activatedTextures {
|
|
|
|
g.activatedTextures[i] = activatedTexture{}
|
|
|
|
}
|
|
|
|
g.activatedTextures = g.activatedTextures[:0]
|
|
|
|
|
2018-11-06 17:59:14 +01:00
|
|
|
return nil
|
2016-02-06 21:13:54 +01:00
|
|
|
}
|