ebiten/internal/graphics/opengl/context_desktop.go

518 lines
13 KiB
Go
Raw Normal View History

2016-02-25 17:58:19 +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.
2016-06-14 20:35:35 +02:00
// +build darwin,!arm,!arm64 linux windows
2016-02-25 17:58:19 +01:00
// +build !js
// +build !android
2016-06-15 17:49:22 +02:00
// +build !ios
2016-02-25 17:58:19 +01:00
package opengl
import (
"errors"
"fmt"
"github.com/go-gl/gl/v2.1/gl"
)
type Texture uint32
type Framebuffer uint32
type Shader uint32
type Program uint32
type Buffer uint32
type uniformLocation int32
type attribLocation int32
2016-02-25 17:58:19 +01:00
2016-02-26 18:41:38 +01:00
type programID uint32
2016-02-25 17:58:19 +01:00
const invalidFramebuffer = (1 << 32) - 1
2016-02-26 18:41:38 +01:00
func (p Program) id() programID {
return programID(p)
2016-02-25 17:58:19 +01:00
}
type context struct {
2016-05-07 12:26:35 +02:00
funcs chan func()
2016-02-25 17:58:19 +01:00
}
2016-04-10 18:45:13 +02:00
func NewContext() (*Context, error) {
2016-02-25 17:58:19 +01:00
c := &Context{
Nearest: gl.NEAREST,
Linear: gl.LINEAR,
VertexShader: gl.VERTEX_SHADER,
FragmentShader: gl.FRAGMENT_SHADER,
ArrayBuffer: gl.ARRAY_BUFFER,
ElementArrayBuffer: gl.ELEMENT_ARRAY_BUFFER,
DynamicDraw: gl.DYNAMIC_DRAW,
StaticDraw: gl.STATIC_DRAW,
Triangles: gl.TRIANGLES,
Lines: gl.LINES,
zero: gl.ZERO,
one: gl.ONE,
srcAlpha: gl.SRC_ALPHA,
dstAlpha: gl.DST_ALPHA,
oneMinusSrcAlpha: gl.ONE_MINUS_SRC_ALPHA,
oneMinusDstAlpha: gl.ONE_MINUS_DST_ALPHA,
2016-05-07 12:26:35 +02:00
locationCache: newLocationCache(),
lastCompositeMode: CompositeModeUnknown,
2016-02-25 17:58:19 +01:00
}
c.funcs = make(chan func())
2016-04-10 18:45:13 +02:00
return c, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) Loop() {
2016-05-07 12:07:56 +02:00
for f := range c.funcs {
f()
2016-02-25 17:58:19 +01:00
}
}
func (c *Context) RunOnContextThread(f func() error) error {
2016-02-25 17:58:19 +01:00
ch := make(chan struct{})
var err error
2016-02-25 17:58:19 +01:00
c.funcs <- func() {
err = f()
2016-02-25 17:58:19 +01:00
close(ch)
}
<-ch
return err
2016-02-25 17:58:19 +01:00
}
2016-04-10 18:45:13 +02:00
func (c *Context) Init() error {
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
// This initialization must be done after Loop is called.
// This is why Init is separated from NewContext.
if err := gl.Init(); err != nil {
return fmt.Errorf("opengl: initializing error %v", err)
2016-02-25 17:58:19 +01:00
}
// Textures' pixel formats are alpha premultiplied.
gl.Enable(gl.BLEND)
return nil
}); err != nil {
2016-04-10 18:45:13 +02:00
return err
}
c.BlendFunc(CompositeModeSourceOver)
if err := c.RunOnContextThread(func() error {
f := int32(0)
gl.GetIntegerv(gl.FRAMEBUFFER_BINDING, &f)
c.screenFramebuffer = Framebuffer(f)
return nil
}); err != nil {
return err
}
2016-04-10 18:45:13 +02:00
return nil
}
func (c *Context) Resume() error {
2016-06-09 18:19:10 +02:00
c.locationCache = newLocationCache()
c.lastFramebuffer = invalidFramebuffer
2016-06-09 18:19:10 +02:00
c.lastViewportWidth = 0
c.lastViewportHeight = 0
c.lastCompositeMode = CompositeModeUnknown
if err := c.RunOnContextThread(func() error {
gl.Enable(gl.BLEND)
return nil
}); err != nil {
return err
}
2016-06-09 18:19:10 +02:00
c.BlendFunc(CompositeModeSourceOver)
if err := c.RunOnContextThread(func() error {
f := int32(0)
gl.GetIntegerv(gl.FRAMEBUFFER_BINDING, &f)
c.screenFramebuffer = Framebuffer(f)
return nil
}); err != nil {
return err
}
return nil
2016-06-09 18:19:10 +02:00
}
func (c *Context) BlendFunc(mode CompositeMode) {
c.RunOnContextThread(func() error {
if c.lastCompositeMode == mode {
return nil
2016-02-28 17:44:09 +01:00
}
c.lastCompositeMode = mode
s, d := c.operations(mode)
gl.BlendFunc(uint32(s), uint32(d))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) NewTexture(width, height int, pixels []uint8, filter Filter) (Texture, error) {
var texture Texture
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
var t uint32
gl.GenTextures(1, &t)
2016-06-27 19:53:35 +02:00
// TODO: Use gl.IsTexture
2016-02-25 17:58:19 +01:00
if t <= 0 {
return errors.New("opengl: creating texture failed")
2016-02-25 17:58:19 +01:00
}
gl.PixelStorei(gl.UNPACK_ALIGNMENT, 4)
gl.BindTexture(gl.TEXTURE_2D, t)
gl.TexParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, int32(filter))
gl.TexParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, int32(filter))
var p interface{}
if pixels != nil {
p = pixels
}
gl.TexImage2D(gl.TEXTURE_2D, 0, gl.RGBA, int32(width), int32(height), 0, gl.RGBA, gl.UNSIGNED_BYTE, gl.Ptr(p))
texture = Texture(t)
return nil
}); err != nil {
return 0, err
}
return texture, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) bindFramebufferImpl(f Framebuffer) error {
if err := c.RunOnContextThread(func() error {
gl.BindFramebuffer(gl.FRAMEBUFFER, uint32(f))
return nil
}); err != nil {
return err
}
return nil
2016-05-31 19:33:31 +02:00
}
func (c *Context) FramebufferPixels(f Framebuffer, width, height int) ([]uint8, error) {
var pixels []uint8
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.Flush()
return nil
}); err != nil {
return nil, err
}
c.bindFramebuffer(f)
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
pixels = make([]uint8, 4*width*height)
gl.ReadPixels(0, 0, int32(width), int32(height), gl.RGBA, gl.UNSIGNED_BYTE, gl.Ptr(pixels))
if e := gl.GetError(); e != gl.NO_ERROR {
pixels = nil
return fmt.Errorf("opengl: glReadPixels: %d", e)
2016-02-25 17:58:19 +01:00
}
return nil
}); err != nil {
return nil, err
}
return pixels, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) BindTexture(t Texture) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.BindTexture(gl.TEXTURE_2D, uint32(t))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) DeleteTexture(t Texture) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
tt := uint32(t)
if !gl.IsTexture(tt) {
return nil
}
2016-02-25 17:58:19 +01:00
gl.DeleteTextures(1, &tt)
return nil
2016-02-25 17:58:19 +01:00
})
}
2016-06-12 16:54:36 +02:00
func (c *Context) IsTexture(t Texture) bool {
r := false
c.RunOnContextThread(func() error {
r = gl.IsTexture(uint32(t))
return nil
})
return r
}
2016-02-25 17:58:19 +01:00
func (c *Context) TexSubImage2D(p []uint8, width, height int) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.TexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, int32(width), int32(height), gl.RGBA, gl.UNSIGNED_BYTE, gl.Ptr(p))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) BindScreenFramebuffer() error {
return c.bindFramebuffer(c.screenFramebuffer)
2016-02-25 17:58:19 +01:00
}
func (c *Context) NewFramebuffer(texture Texture) (Framebuffer, error) {
var framebuffer Framebuffer
var f uint32
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.GenFramebuffers(1, &f)
// TODO: Use gl.IsFramebuffer
if f <= 0 {
return errors.New("opengl: creating framebuffer failed: gl.IsFramebuffer returns false")
2016-02-25 17:58:19 +01:00
}
return nil
}); err != nil {
return 0, err
}
c.bindFramebuffer(Framebuffer(f))
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.FramebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, uint32(texture), 0)
s := gl.CheckFramebufferStatus(gl.FRAMEBUFFER)
if s != gl.FRAMEBUFFER_COMPLETE {
if s != 0 {
return fmt.Errorf("opengl: creating framebuffer failed: %v", s)
2016-02-25 17:58:19 +01:00
}
if e := gl.GetError(); e != gl.NO_ERROR {
return fmt.Errorf("opengl: creating framebuffer failed: (glGetError) %d", e)
2016-02-25 17:58:19 +01:00
}
return fmt.Errorf("opengl: creating framebuffer failed: unknown error")
2016-02-25 17:58:19 +01:00
}
framebuffer = Framebuffer(f)
return nil
}); err != nil {
return 0, err
}
return framebuffer, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) setViewportImpl(width, height int) error {
return c.RunOnContextThread(func() error {
gl.Viewport(0, 0, int32(width), int32(height))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) FillFramebuffer(r, g, b, a float64) error {
return c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.ClearColor(float32(r), float32(g), float32(b), float32(a))
gl.Clear(gl.COLOR_BUFFER_BIT)
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) DeleteFramebuffer(f Framebuffer) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
ff := uint32(f)
if !gl.IsFramebuffer(ff) {
return nil
}
if c.lastFramebuffer == f {
c.lastFramebuffer = invalidFramebuffer
c.lastViewportWidth = 0
c.lastViewportHeight = 0
}
2016-02-25 17:58:19 +01:00
gl.DeleteFramebuffers(1, &ff)
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) NewShader(shaderType ShaderType, source string) (Shader, error) {
var shader Shader
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
s := gl.CreateShader(uint32(shaderType))
if s == 0 {
return errors.New("opengl: glCreateShader failed")
2016-02-25 17:58:19 +01:00
}
cSources, free := gl.Strs(source + "\x00")
gl.ShaderSource(uint32(s), 1, cSources, nil)
free()
gl.CompileShader(s)
var v int32
gl.GetShaderiv(s, gl.COMPILE_STATUS, &v)
if v == gl.FALSE {
log := []uint8{}
gl.GetShaderiv(uint32(s), gl.INFO_LOG_LENGTH, &v)
if v != 0 {
log = make([]uint8, int(v))
gl.GetShaderInfoLog(uint32(s), v, nil, (*uint8)(gl.Ptr(log)))
}
return fmt.Errorf("opengl: shader compile failed: %s", log)
2016-02-25 17:58:19 +01:00
}
shader = Shader(s)
return nil
}); err != nil {
return 0, err
}
return shader, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) DeleteShader(s Shader) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.DeleteShader(uint32(s))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) GlslHighpSupported() bool {
return false
}
func (c *Context) NewProgram(shaders []Shader) (Program, error) {
var program Program
if err := c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
p := gl.CreateProgram()
if p == 0 {
return errors.New("opengl: glCreateProgram failed")
2016-02-25 17:58:19 +01:00
}
for _, shader := range shaders {
gl.AttachShader(p, uint32(shader))
}
gl.LinkProgram(p)
var v int32
gl.GetProgramiv(p, gl.LINK_STATUS, &v)
if v == gl.FALSE {
return errors.New("opengl: program error")
2016-02-25 17:58:19 +01:00
}
program = Program(p)
return nil
}); err != nil {
return 0, err
}
return program, nil
2016-02-25 17:58:19 +01:00
}
func (c *Context) UseProgram(p Program) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.UseProgram(uint32(p))
return nil
2016-02-25 17:58:19 +01:00
})
}
2016-06-03 20:50:28 +02:00
func (c *Context) getUniformLocationImpl(p Program, location string) uniformLocation {
uniform := uniformLocation(gl.GetUniformLocation(uint32(p), gl.Str(location+"\x00")))
2016-02-25 17:58:19 +01:00
if uniform == -1 {
panic("opengl: invalid uniform location: " + location)
}
return uniform
}
func (c *Context) UniformInt(p Program, location string, v int) {
c.RunOnContextThread(func() error {
2016-02-26 19:01:55 +01:00
l := int32(c.locationCache.GetUniformLocation(c, p, location))
2016-02-25 17:58:19 +01:00
gl.Uniform1i(l, int32(v))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) UniformFloats(p Program, location string, v []float32) {
c.RunOnContextThread(func() error {
2016-02-26 19:01:55 +01:00
l := int32(c.locationCache.GetUniformLocation(c, p, location))
2016-02-25 17:58:19 +01:00
switch len(v) {
case 4:
gl.Uniform4fv(l, 1, (*float32)(gl.Ptr(v)))
case 16:
gl.UniformMatrix4fv(l, 1, false, (*float32)(gl.Ptr(v)))
default:
panic("not reach")
}
return nil
2016-02-25 17:58:19 +01:00
})
}
2016-06-03 20:50:28 +02:00
func (c *Context) getAttribLocationImpl(p Program, location string) attribLocation {
attrib := attribLocation(gl.GetAttribLocation(uint32(p), gl.Str(location+"\x00")))
2016-02-25 17:58:19 +01:00
if attrib == -1 {
2016-04-10 18:45:13 +02:00
panic("opengl: invalid attrib location: " + location)
2016-02-25 17:58:19 +01:00
}
return attrib
}
func (c *Context) VertexAttribPointer(p Program, location string, normalize bool, stride int, size int, v int) {
c.RunOnContextThread(func() error {
2016-02-26 19:01:55 +01:00
l := c.locationCache.GetAttribLocation(c, p, location)
2016-02-25 17:58:19 +01:00
gl.VertexAttribPointer(uint32(l), int32(size), gl.SHORT, normalize, int32(stride), gl.PtrOffset(v))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) EnableVertexAttribArray(p Program, location string) {
c.RunOnContextThread(func() error {
2016-02-26 19:01:55 +01:00
l := c.locationCache.GetAttribLocation(c, p, location)
2016-02-25 17:58:19 +01:00
gl.EnableVertexAttribArray(uint32(l))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) DisableVertexAttribArray(p Program, location string) {
c.RunOnContextThread(func() error {
2016-02-26 19:01:55 +01:00
l := c.locationCache.GetAttribLocation(c, p, location)
2016-02-25 17:58:19 +01:00
gl.DisableVertexAttribArray(uint32(l))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) DeleteProgram(p Program) {
c.RunOnContextThread(func() error {
gl.DeleteProgram(uint32(p))
return nil
})
}
func (c *Context) NewBuffer(bufferType BufferType, v interface{}, bufferUsage BufferUsage) Buffer {
var buffer Buffer
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
var b uint32
gl.GenBuffers(1, &b)
gl.BindBuffer(uint32(bufferType), b)
switch v := v.(type) {
case int:
gl.BufferData(uint32(bufferType), v, nil, uint32(bufferUsage))
case []uint16:
gl.BufferData(uint32(bufferType), 2*len(v), gl.Ptr(v), uint32(bufferUsage))
default:
panic("not reach")
}
buffer = Buffer(b)
return nil
2016-02-25 17:58:19 +01:00
})
return buffer
2016-02-25 17:58:19 +01:00
}
func (c *Context) BindElementArrayBuffer(b Buffer) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.BindBuffer(gl.ELEMENT_ARRAY_BUFFER, uint32(b))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) BufferSubData(bufferType BufferType, data []int16) {
c.RunOnContextThread(func() error {
2016-02-25 17:58:19 +01:00
gl.BufferSubData(uint32(bufferType), 0, 2*len(data), gl.Ptr(data))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) DeleteBuffer(b Buffer) {
c.RunOnContextThread(func() error {
bb := uint32(b)
gl.DeleteBuffers(1, &bb)
return nil
})
}
func (c *Context) DrawElements(mode Mode, len int, offsetInBytes int) {
c.RunOnContextThread(func() error {
gl.DrawElements(uint32(mode), int32(len), gl.UNSIGNED_SHORT, gl.PtrOffset(offsetInBytes))
return nil
2016-02-25 17:58:19 +01:00
})
}
func (c *Context) Flush() {
c.RunOnContextThread(func() error {
gl.Flush()
return nil
})
}