From 61b0b72259d7bc254f53c30215f020b056fa4066 Mon Sep 17 00:00:00 2001 From: FyloZ Date: Sun, 2 Mar 2025 22:07:07 -0500 Subject: [PATCH] PixelFormat --- Cargo.lock | 4 ++-- uitlk/Cargo.toml | 2 +- uitlk/src/lib.rs | 15 ++++++--------- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6dbe10f..3665943 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,9 +109,9 @@ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" [[package]] name = "sdl3" -version = "0.14.3" +version = "0.14.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f43489df3f10ba4e6682ac57203f0f3e1f85e51936ccf5bf8b3276d585c42f" +checksum = "e55f9adf2ac7e868746564d885f677fa797106f7c5deffa348dad3ef6e659300" dependencies = [ "bitflags", "lazy_static", diff --git a/uitlk/Cargo.toml b/uitlk/Cargo.toml index 7e132ef..95f697d 100644 --- a/uitlk/Cargo.toml +++ b/uitlk/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sdl3 = "0.14.3" \ No newline at end of file +sdl3 = "0.14.14" \ No newline at end of file diff --git a/uitlk/src/lib.rs b/uitlk/src/lib.rs index 700083b..67d3108 100644 --- a/uitlk/src/lib.rs +++ b/uitlk/src/lib.rs @@ -47,21 +47,18 @@ impl UIWindow { self.canvas.set_draw_color(Color::RGB(0, 0, 0)); self.canvas.clear(); + // let test = unsafe { PixelFormat::from_ll(SDL_PIXELFORMAT_ARGB8888) }; + let test = PixelFormat::try_from(SDL_PIXELFORMAT_ARGB8888).unwrap(); + let texture_creator = self.canvas.texture_creator(); let mut texture = texture_creator .create_texture_static( - PixelFormat::from_masks(PixelMasks { - bpp: 32, - amask: 0x16, - bmask: 0x36, - gmask: 0x20, - rmask: 0x04, - }), - 1, + test, + 2, 1, ) .unwrap(); - let color_buffer = vec![0xff, 0x35, 0x35, 0x35]; + let color_buffer = vec![0x0, 0x0, 0xff, 0xff, 0x0, 0xff, 0x0, 0xff]; texture.update(None, &color_buffer, 4).unwrap(); self.canvas.copy(&texture, None, Rect::new(10, 10, 50, 50)).unwrap();