mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-31 17:07:39 +00:00
Removed trailing commas in enums
This commit is contained in:
parent
d4b8072614
commit
1751e127c8
3 changed files with 3 additions and 3 deletions
include/SDL3
|
@ -142,7 +142,7 @@ typedef enum SDL_AudioFormat
|
|||
/* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */
|
||||
SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */
|
||||
/* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */
|
||||
SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */
|
||||
SDL_AUDIO_F32BE = 0x9120u /**< As above, but big-endian byte order */
|
||||
/* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */
|
||||
} SDL_AudioFormat;
|
||||
|
||||
|
|
|
@ -268,7 +268,7 @@ typedef enum SDL_GPUShaderFormatFlagBits
|
|||
SDL_GPU_SHADERFORMAT_DXBC = 0x00000004, /* D3D11 (Shader Model 5_0) */
|
||||
SDL_GPU_SHADERFORMAT_DXIL = 0x00000008, /* D3D12 */
|
||||
SDL_GPU_SHADERFORMAT_MSL = 0x00000010, /* Metal */
|
||||
SDL_GPU_SHADERFORMAT_METALLIB = 0x00000020, /* Metal */
|
||||
SDL_GPU_SHADERFORMAT_METALLIB = 0x00000020 /* Metal */
|
||||
} SDL_GPUShaderFormatFlagBits;
|
||||
|
||||
typedef Uint32 SDL_GPUShaderFormat;
|
||||
|
|
|
@ -72,7 +72,7 @@ typedef enum SDL_IOWhence
|
|||
{
|
||||
SDL_IO_SEEK_SET, /**< Seek from the beginning of data */
|
||||
SDL_IO_SEEK_CUR, /**< Seek relative to current read point */
|
||||
SDL_IO_SEEK_END, /**< Seek relative to the end of data */
|
||||
SDL_IO_SEEK_END /**< Seek relative to the end of data */
|
||||
} SDL_IOWhence;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue