Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
17 lines
715 B
Diff
17 lines
715 B
Diff
diff --git a/t/core_surface.t b/t/core_surface.t
|
|
index 897536b6..03efa859 100644
|
|
--- a/t/core_surface.t
|
|
+++ b/t/core_surface.t
|
|
@@ -51,7 +51,10 @@ is( $image->h, 32, 'image has height' );
|
|
|
|
my $pixel_format = $image->format;
|
|
isa_ok( $pixel_format, 'SDL::PixelFormat' );
|
|
-is( $pixel_format->BitsPerPixel, 8, ' BitsPerPixel' );
|
|
+# the bitmap has a bitdepth of 4
|
|
+# SDL_classic could not allocate less than full bytes per pixel
|
|
+# sdl12-compat returns the actual bit depth of the image here
|
|
+is( $pixel_format->BitsPerPixel, 4, ' BitsPerPixel' );
|
|
is( $pixel_format->BytesPerPixel, 1, ' BytesPerPixel' );
|
|
is( $pixel_format->Rloss, 8, ' Rloss' );
|
|
is( $pixel_format->Gloss, 8, ' Gloss' );
|