Skip to content

Commit a9a0fa0

Browse files
committed
[sdl2-image] Remove support for unsupported image codecs
Supporting these codecs would require adding more specific ports. Fixes: #24614
1 parent d8a6db2 commit a9a0fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ports/sdl2_image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
'formats': 'A comma separated list of formats (ex: --use-port=sdl2_image:formats=png,jpg)',
2121
}
2222

23-
SUPPORTED_FORMATS = {'avif', 'bmp', 'gif', 'jpg', 'jxl', 'lbm', 'pcx', 'png',
24-
'pnm', 'qoi', 'svg', 'tga', 'tif', 'webp', 'xcf', 'xpm', 'xv'}
23+
SUPPORTED_FORMATS = {'bmp', 'gif', 'jpg', 'lbm', 'pcx', 'png',
24+
'pnm', 'qoi', 'svg', 'tga', 'xcf', 'xpm', 'xv'}
2525

2626
# user options (from --use-port)
2727
opts: Dict[str, Set] = {

0 commit comments

Comments
 (0)