mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
internal/graphicsdriver/playstation5: use message to detect errors
This commit is contained in:
parent
00e67b8419
commit
a0cb0d0568
@ -53,7 +53,7 @@ func NewGraphics() (*Graphics, error) {
|
||||
}
|
||||
|
||||
func (g *Graphics) Initialize() error {
|
||||
if err := C.ebitengine_InitializeGraphics(); err.code != 0 {
|
||||
if err := C.ebitengine_InitializeGraphics(); err.message != nil {
|
||||
return newPlaystation5Error("(*playstation5.Graphics).Initialize", err)
|
||||
}
|
||||
return nil
|
||||
@ -76,7 +76,7 @@ func (g *Graphics) SetVertices(vertices []float32, indices []uint32) error {
|
||||
|
||||
func (g *Graphics) NewImage(width, height int) (graphicsdriver.Image, error) {
|
||||
var id C.int
|
||||
if err := C.ebitengine_NewImage(&id, C.int(width), C.int(height)); err.code != 0 {
|
||||
if err := C.ebitengine_NewImage(&id, C.int(width), C.int(height)); err.message != nil {
|
||||
return nil, newPlaystation5Error("(*playstation5.Graphics).NewImage", err)
|
||||
}
|
||||
return &Image{
|
||||
@ -86,7 +86,7 @@ func (g *Graphics) NewImage(width, height int) (graphicsdriver.Image, error) {
|
||||
|
||||
func (g *Graphics) NewScreenFramebufferImage(width, height int) (graphicsdriver.Image, error) {
|
||||
var id C.int
|
||||
if err := C.ebitengine_NewScreenFramebufferImage(&id, C.int(width), C.int(height)); err.code != 0 {
|
||||
if err := C.ebitengine_NewScreenFramebufferImage(&id, C.int(width), C.int(height)); err.message != nil {
|
||||
return nil, newPlaystation5Error("(*playstation5.Graphics).NewScreenFramebufferImage", err)
|
||||
}
|
||||
return &Image{
|
||||
@ -108,7 +108,7 @@ func (g *Graphics) MaxImageSize() int {
|
||||
func (g *Graphics) NewShader(program *shaderir.Program) (graphicsdriver.Shader, error) {
|
||||
var id C.int
|
||||
// TODO: Give a source code.
|
||||
if err := C.ebitengine_NewShader(&id, nil); err.code != 0 {
|
||||
if err := C.ebitengine_NewShader(&id, nil); err.message != nil {
|
||||
return nil, newPlaystation5Error("(*playstation5.Graphics).NewShader", err)
|
||||
}
|
||||
return &Shader{
|
||||
|
Loading…
Reference in New Issue
Block a user