We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b00d25 commit 73e3072Copy full SHA for 73e3072
units/sdlpixels.inc
@@ -450,6 +450,12 @@ const
450
(cint(' ') shl 24);
451
452
type
453
+
454
+ {**
455
+ * The bits of this structure can be directly reinterpreted as an integer-packed
456
+ * color which uses the SDL_PIXELFORMAT_RGBA32 format (SDL_PIXELFORMAT_ABGR8888
457
+ * on little-endian systems and SDL_PIXELFORMAT_RGBA8888 on big-endian systems).
458
+ *}
459
PPSDL_Color = ^PSDL_Color;
460
PSDL_Color = ^TSDL_Color;
461
TSDL_Color = record
@@ -475,7 +481,6 @@ type
475
481
{**
476
482
* Everything in the pixel format structure is read-only.
477
483
*}
478
-
479
484
PPSDL_PixelFormat = ^PSDL_PixelFormat;
480
485
PSDL_PixelFormat = ^TSDL_PixelFormat;
486
TSDL_PixelFormat = record
0 commit comments