mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
691adf4e77
According to #565 X11 GPU drivers don't deal well with recreation of EGL surfaces. Thanks to Walter Schneider for debugging this issue and coming up with the original patch. Fixes: https://todo.sr.ht/~eliasnaur/gio/565 Co-authored-by: Walter Werner SCHNEIDER <contact@schnwalter.eu> Signed-off-by: Elias Naur <mail@eliasnaur.com>
60 lines
1.0 KiB
Go
60 lines
1.0 KiB
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
//go:build !noopengl
|
|
|
|
package app
|
|
|
|
import (
|
|
"gioui.org/internal/egl"
|
|
)
|
|
|
|
type glContext struct {
|
|
win *window
|
|
*egl.Context
|
|
}
|
|
|
|
func init() {
|
|
drivers = append(drivers, gpuAPI{
|
|
priority: 2,
|
|
initializer: func(w *window) (context, error) {
|
|
disp := egl.NativeDisplayType(w.HDC())
|
|
ctx, err := egl.NewContext(disp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
win, _, _ := w.HWND()
|
|
eglSurf := egl.NativeWindowType(win)
|
|
if err := ctx.CreateSurface(eglSurf); err != nil {
|
|
ctx.Release()
|
|
return nil, err
|
|
}
|
|
if err := ctx.MakeCurrent(); err != nil {
|
|
ctx.Release()
|
|
return nil, err
|
|
}
|
|
defer ctx.ReleaseCurrent()
|
|
ctx.EnableVSync(true)
|
|
return &glContext{win: w, Context: ctx}, nil
|
|
},
|
|
})
|
|
}
|
|
|
|
func (c *glContext) Release() {
|
|
if c.Context != nil {
|
|
c.Context.Release()
|
|
c.Context = nil
|
|
}
|
|
}
|
|
|
|
func (c *glContext) Refresh() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *glContext) Lock() error {
|
|
return c.Context.MakeCurrent()
|
|
}
|
|
|
|
func (c *glContext) Unlock() {
|
|
c.Context.ReleaseCurrent()
|
|
}
|