From ffa52d52a7d972e2bbcb0ed40a9c46d82cdc2440 Mon Sep 17 00:00:00 2001 From: Jeff Palmer Date: Tue, 28 Jul 2026 19:27:15 -0700 Subject: [PATCH] Fix incorrect gpu-shader-format bitfield values --- src/gpu/type.lisp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/gpu/type.lisp b/src/gpu/type.lisp index 10ac3b2..8b64e13 100644 --- a/src/gpu/type.lisp +++ b/src/gpu/type.lisp @@ -1,13 +1,13 @@ (in-package :sdl3) (defbitfield gpu-shader-format - (:invalid #x0) - (:private #x1) - (:spirv #x2) - (:dxbc #x4) - (:dxil #x8) - (:msl #x16) - (:metallib #x32)) + (:invalid #x00) + (:private #x01) + (:spirv #x02) + (:dxbc #x04) + (:dxil #x08) + (:msl #x10) + (:metallib #x20)) (deflsp-type gpu-compute-pipeline-create-info (code-size size-t)