2020-05-17 20:45:58 +02:00
|
|
|
// Copyright 2020 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package graphicscommand
|
|
|
|
|
|
|
|
import (
|
2022-02-06 12:41:32 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/shaderir"
|
2020-05-17 20:45:58 +02:00
|
|
|
)
|
|
|
|
|
2023-12-01 13:31:50 +01:00
|
|
|
var nextShaderID = 1
|
|
|
|
|
|
|
|
func genNextShaderID() int {
|
|
|
|
id := nextShaderID
|
|
|
|
nextShaderID++
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2020-05-17 20:45:58 +02:00
|
|
|
type Shader struct {
|
2022-02-06 12:41:32 +01:00
|
|
|
shader graphicsdriver.Shader
|
2022-11-03 10:48:59 +01:00
|
|
|
ir *shaderir.Program
|
2023-12-01 13:31:50 +01:00
|
|
|
id int
|
2024-09-07 16:24:55 +02:00
|
|
|
|
|
|
|
// name is used only for logging.
|
|
|
|
name string
|
2020-05-17 20:45:58 +02:00
|
|
|
}
|
|
|
|
|
2024-09-07 14:58:42 +02:00
|
|
|
func NewShader(ir *shaderir.Program, name string) *Shader {
|
2022-11-03 10:48:59 +01:00
|
|
|
s := &Shader{
|
2024-09-07 14:58:42 +02:00
|
|
|
ir: ir,
|
|
|
|
id: genNextShaderID(),
|
|
|
|
name: name,
|
2022-11-03 10:48:59 +01:00
|
|
|
}
|
2020-05-17 20:45:58 +02:00
|
|
|
c := &newShaderCommand{
|
|
|
|
result: s,
|
2022-04-03 19:15:33 +02:00
|
|
|
ir: ir,
|
2020-05-17 20:45:58 +02:00
|
|
|
}
|
2023-10-08 09:55:29 +02:00
|
|
|
theCommandQueueManager.enqueueCommand(c)
|
2020-05-17 20:45:58 +02:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Shader) Dispose() {
|
|
|
|
c := &disposeShaderCommand{
|
|
|
|
target: s,
|
|
|
|
}
|
2023-10-08 09:55:29 +02:00
|
|
|
theCommandQueueManager.enqueueCommand(c)
|
2020-05-17 20:45:58 +02:00
|
|
|
}
|
2023-04-16 11:56:14 +02:00
|
|
|
|
|
|
|
func (s *Shader) unit() shaderir.Unit {
|
|
|
|
return s.ir.Unit
|
|
|
|
}
|