mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-13 22:47:26 +01:00
d9acc57997
This change updates the copyright comment to respect the original GLFW source comments.
29 lines
673 B
Go
29 lines
673 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2002-2006 Marcus Geelnard
|
|
// SPDX-FileCopyrightText: 2006-2019 Camilla Löwy <elmindreda@glfw.org>
|
|
// 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")
|
|
}
|