1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sokol: add sg_isvalid wrapper to gfx (#12081)

This commit is contained in:
Larpon
2021-10-07 09:41:57 +02:00
committed by GitHub
parent f454d30318
commit 53aa4eba0d
3 changed files with 8 additions and 4 deletions

View File

@@ -6,8 +6,6 @@ import os
import stbi
import sokol.gfx
fn C.sg_isvalid() bool
// TODO return ?Image
pub fn (mut ctx Context) create_image(file string) Image {
// println('\ncreate_image("$file")')
@@ -25,7 +23,7 @@ pub fn (mut ctx Context) create_image(file string) Image {
return img
}
}
if !C.sg_isvalid() {
if !gfx.is_valid() {
// Sokol is not initialized yet, add stbi object to a queue/cache
// ctx.image_queue << file
stb_img := stbi.load(file) or { return Image{} }
@@ -145,7 +143,7 @@ pub fn (mut img Image) update_pixel_data(buf &byte) {
// TODO copypasta
pub fn (mut ctx Context) create_image_with_size(file string, width int, height int) Image {
if !C.sg_isvalid() {
if !gfx.is_valid() {
// Sokol is not initialized yet, add stbi object to a queue/cache
// ctx.image_queue << file
stb_img := stbi.load(file) or { return Image{} }