Skip to content

Commit

Permalink
fix: graphics ext metal backend format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Dec 20, 2024
1 parent d2b640b commit 27041b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/pl_graphics_metal.m
Original file line number Diff line number Diff line change
Expand Up @@ -2900,7 +2900,7 @@
case PL_FORMAT_D32_FLOAT: return MTLPixelFormatDepth32Float;
case PL_FORMAT_D32_FLOAT_S8_UINT: return MTLPixelFormatDepth32Float_Stencil8;
case PL_FORMAT_D24_UNORM_S8_UINT: return MTLPixelFormatDepth24Unorm_Stencil8;
case PL_FORMAT_D16_UNORM_S8_UINT: return MTLPixelFormatDepth16Unorm;
case PL_FORMAT_D16_UNORM: return MTLPixelFormatDepth16Unorm;
case PL_FORMAT_R8_SNORM: return MTLPixelFormatR8Unorm;
case PL_FORMAT_R8_UINT: return MTLPixelFormatR8Uint;
case PL_FORMAT_R8_SINT: return MTLPixelFormatR8Sint;
Expand Down

0 comments on commit 27041b6

Please sign in to comment.