ebiten/internal/goglfw/posixthread_unix.go
2023-08-01 23:57:05 +09:00

29 lines
651 B
Go

// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: 2002-2006 Marcus Geelnard
// SPDX-FileCopyrightText: 2006-2019 Camilla Löwy
// SPDX-FileCopyrightText: 2023 The Ebitengine Authors
//go:build darwin
package goglfw
type platformTLSState struct {
// TODO: Implement this.
}
func (t *tls) create() error {
panic("goglfw: tls.create is not implemented yet")
}
func (t *tls) destroy() error {
panic("goglfw: tls.destroy is not implemented yet")
}
func (t *tls) get() (uintptr, error) {
panic("goglfw: tls.get is not implemented yet")
}
func (t *tls) set(value uintptr) error {
panic("goglfw: tls.set is not implemented yet")
}