|
6 | 6 | SPDX-License-Identifier: Zlib |
7 | 7 | } |
8 | 8 |
|
| 9 | +{ |
| 10 | +* # CategoryBlendmode |
| 11 | +* |
| 12 | +* Blend modes decide how two colors will mix together. There are both |
| 13 | +* standard modes for basic needs and a means to create custom modes, |
| 14 | +* dictating what sort of math to do on what color components. |
| 15 | +} |
| 16 | + |
9 | 17 | {* |
10 | 18 | * A set of blend modes used in drawing operations. |
11 | 19 | * |
12 | 20 | * These predefined blend modes are supported everywhere. |
13 | 21 | * |
14 | 22 | * Additional values may be obtained from SDL_ComposeCustomBlendMode. |
15 | 23 | * |
16 | | - * \since This datatype is available since SDL 3.1.3. |
| 24 | + * \since This datatype is available since SDL 3.2.0. |
17 | 25 | * |
18 | 26 | * \sa SDL_ComposeCustomBlendMode |
19 | 27 | } |
|
36 | 44 | * The blend operation used when combining source and destination pixel |
37 | 45 | * components. |
38 | 46 | * |
39 | | - * \since This enum is available since SDL 3.1.3. |
| 47 | + * \since This enum is available since SDL 3.2.0. |
40 | 48 | } |
41 | 49 | type |
42 | 50 | PPSDL_BlendOperation = ^PSDL_BlendOperation; |
|
57 | 65 | * operation. The comma-separated factors listed above are always applied in |
58 | 66 | * the component order red, green, blue, and alpha. |
59 | 67 | * |
60 | | - * \since This enum is available since SDL 3.1.3. |
| 68 | + * \since This enum is available since SDL 3.2.0. |
61 | 69 | } |
62 | 70 | type |
63 | 71 | PPSDL_BlendFactor = ^PSDL_BlendFactor; |
@@ -155,7 +163,7 @@ const |
155 | 163 | * |
156 | 164 | * \threadsafety It is safe to call this function from any thread. |
157 | 165 | * |
158 | | - * \since This function is available since SDL 3.1.3. |
| 166 | + * \since This function is available since SDL 3.2.0. |
159 | 167 | * |
160 | 168 | * \sa SDL_SetRenderDrawBlendMode |
161 | 169 | * \sa SDL_GetRenderDrawBlendMode |
|
0 commit comments