forked from hajimehoshi/ebiten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphics.go
166 lines (133 loc) · 5.14 KB
/
graphics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// 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.
package ebiten
import (
"fmt"
"github.com/hajimehoshi/ebiten/v2/internal/builtinshader"
"github.com/hajimehoshi/ebiten/v2/internal/ui"
)
// Filter represents the type of texture filter to be used when an image is maginified or minified.
type Filter int
const (
// FilterNearest represents nearest (crisp-edged) filter
FilterNearest Filter = Filter(builtinshader.FilterNearest)
// FilterLinear represents linear filter
FilterLinear Filter = Filter(builtinshader.FilterLinear)
)
// CompositeMode represents Porter-Duff composition mode.
//
// Deprecated: as of v2.5. Use Blend instead.
type CompositeMode int
const (
// CompositeModeCustom indicates to refer Blend.
CompositeModeCustom CompositeMode = iota
// Deprecated: as of v2.5. Use BlendSourceOver instead.
CompositeModeSourceOver
// Deprecated: as of v2.5. Use BlendClear instead.
CompositeModeClear
// Deprecated: as of v2.5. Use BlendCopy instead.
CompositeModeCopy
// Deprecated: as of v2.5. Use BlendDestination instead.
CompositeModeDestination
// Deprecated: as of v2.5. Use BlendDestinationOver instead.
CompositeModeDestinationOver
// Deprecated: as of v2.5. Use BlendSourceIn instead.
CompositeModeSourceIn
// Deprecated: as of v2.5. Use BlendDestinationIn instead.
CompositeModeDestinationIn
// Deprecated: as of v2.5. Use BlendSourceOut instead.
CompositeModeSourceOut
// Deprecated: as of v2.5. Use BlendDestinationOut instead.
CompositeModeDestinationOut
// Deprecated: as of v2.5. Use BlendSourceAtop instead.
CompositeModeSourceAtop
// Deprecated: as of v2.5. Use BlendDestinationAtop instead.
CompositeModeDestinationAtop
// Deprecated: as of v2.5. Use BlendXor instead.
CompositeModeXor
// Deprecated: as of v2.5. Use BlendLighter instead.
CompositeModeLighter
// Deprecated: as of v2.5. Use Blend with BlendFactorDestinationColor and BlendFactorZero instead.
CompositeModeMultiply
)
func (c CompositeMode) blend() Blend {
switch c {
case CompositeModeSourceOver:
return BlendSourceOver
case CompositeModeClear:
return BlendClear
case CompositeModeCopy:
return BlendCopy
case CompositeModeDestination:
return BlendDestination
case CompositeModeDestinationOver:
return BlendDestinationOver
case CompositeModeSourceIn:
return BlendSourceIn
case CompositeModeDestinationIn:
return BlendDestinationIn
case CompositeModeSourceOut:
return BlendSourceOut
case CompositeModeDestinationOut:
return BlendDestinationOut
case CompositeModeSourceAtop:
return BlendSourceAtop
case CompositeModeDestinationAtop:
return BlendDestinationAtop
case CompositeModeXor:
return BlendXor
case CompositeModeLighter:
return BlendLighter
case CompositeModeMultiply:
return Blend{
BlendFactorSourceRGB: BlendFactorDestinationColor,
BlendFactorSourceAlpha: BlendFactorDestinationColor,
BlendFactorDestinationRGB: BlendFactorZero,
BlendFactorDestinationAlpha: BlendFactorZero,
BlendOperationRGB: BlendOperationAdd,
BlendOperationAlpha: BlendOperationAdd,
}
default:
panic(fmt.Sprintf("ebiten: invalid composite mode: %d", c))
}
}
// GraphicsLibrary represets graphics libraries supported by the engine.
type GraphicsLibrary int
const (
GraphicsLibraryAuto GraphicsLibrary = GraphicsLibrary(ui.GraphicsLibraryAuto)
// GraphicsLibraryUnknown represents the state at which graphics library cannot be determined,
// e.g. hasn't loaded yet or failed to initialize.
GraphicsLibraryUnknown GraphicsLibrary = GraphicsLibrary(ui.GraphicsLibraryUnknown)
// GraphicsLibraryOpenGL represents the graphics library OpenGL.
GraphicsLibraryOpenGL GraphicsLibrary = GraphicsLibrary(ui.GraphicsLibraryOpenGL)
// GraphicsLibraryDirectX represents the graphics library Microsoft DirectX.
GraphicsLibraryDirectX GraphicsLibrary = GraphicsLibrary(ui.GraphicsLibraryDirectX)
// GraphicsLibraryMetal represents the graphics library Apple's Metal.
GraphicsLibraryMetal GraphicsLibrary = GraphicsLibrary(ui.GraphicsLibraryMetal)
)
// String returns a string representing the graphics library.
func (g GraphicsLibrary) String() string {
return ui.GraphicsLibrary(g).String()
}
// Ensures GraphicsLibraryAuto is zero (the default value for RunOptions).
var _ [GraphicsLibraryAuto]int = [0]int{}
// DebugInfo is a struct to store debug info about the graphics.
type DebugInfo struct {
// GraphicsLibrary represents the graphics library currently in use.
GraphicsLibrary GraphicsLibrary
}
// ReadDebugInfo writes debug info (e.g. current graphics library) into a provided struct.
func ReadDebugInfo(d *DebugInfo) {
d.GraphicsLibrary = GraphicsLibrary(ui.GetGraphicsLibrary())
}