raylib 5.0.0.3__cp310-cp310-macosx_14_0_arm64.whl → 5.0.0.5__cp310-cp310-macosx_14_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of raylib might be problematic. Click here for more details.

raylib/rlgl.h.modified ADDED
@@ -0,0 +1,505 @@
1
+ /**********************************************************************************************
2
+ *
3
+ * rlgl v4.5 - A multi-OpenGL abstraction layer with an immediate-mode style API
4
+ *
5
+ * DESCRIPTION:
6
+ * An abstraction layer for multiple OpenGL versions (1.1, 2.1, 3.3 Core, 4.3 Core, ES 2.0)
7
+ * that provides a pseudo-OpenGL 1.1 immediate-mode style API (rlVertex, rlTranslate, rlRotate...)
8
+ *
9
+ * ADDITIONAL NOTES:
10
+ * When choosing an OpenGL backend different than OpenGL 1.1, some internal buffer are
11
+ * initialized on rlglInit() to accumulate vertex data.
12
+ *
13
+ * When an internal state change is required all the stored vertex data is renderer in batch,
14
+ * additionally, rlDrawRenderBatchActive() could be called to force flushing of the batch.
15
+ *
16
+ * Some resources are also loaded for convenience, here the complete list:
17
+ * - Default batch (RLGL.defaultBatch): RenderBatch system to accumulate vertex data
18
+ * - Default texture (RLGL.defaultTextureId): 1x1 white pixel R8G8B8A8
19
+ * - Default shader (RLGL.State.defaultShaderId, RLGL.State.defaultShaderLocs)
20
+ *
21
+ * Internal buffer (and resources) must be manually unloaded calling rlglClose().
22
+ *
23
+ * CONFIGURATION:
24
+ * #define GRAPHICS_API_OPENGL_11
25
+ * #define GRAPHICS_API_OPENGL_21
26
+ * #define GRAPHICS_API_OPENGL_33
27
+ * #define GRAPHICS_API_OPENGL_43
28
+ * #define GRAPHICS_API_OPENGL_ES2
29
+ * #define GRAPHICS_API_OPENGL_ES3
30
+ * Use selected OpenGL graphics backend, should be supported by platform
31
+ * Those preprocessor defines are only used on rlgl module, if OpenGL version is
32
+ * required by any other module, use rlGetVersion() to check it
33
+ *
34
+ * #define RLGL_IMPLEMENTATION
35
+ * Generates the implementation of the library into the included file.
36
+ * If not defined, the library is in header only mode and can be included in other headers
37
+ * or source files without problems. But only ONE file should hold the implementation.
38
+ *
39
+ * #define RLGL_RENDER_TEXTURES_HINT
40
+ * Enable framebuffer objects (fbo) support (enabled by default)
41
+ * Some GPUs could not support them despite the OpenGL version
42
+ *
43
+ * #define RLGL_SHOW_GL_DETAILS_INFO
44
+ * Show OpenGL extensions and capabilities detailed logs on init
45
+ *
46
+ * #define RLGL_ENABLE_OPENGL_DEBUG_CONTEXT
47
+ * Enable debug context (only available on OpenGL 4.3)
48
+ *
49
+ * rlgl capabilities could be customized just defining some internal
50
+ * values before library inclusion (default values listed):
51
+ *
52
+ * #define RL_DEFAULT_BATCH_BUFFER_ELEMENTS 8192 // Default internal render batch elements limits
53
+ * #define RL_DEFAULT_BATCH_BUFFERS 1 // Default number of batch buffers (multi-buffering)
54
+ * #define RL_DEFAULT_BATCH_DRAWCALLS 256 // Default number of batch draw calls (by state changes: mode, texture)
55
+ * #define RL_DEFAULT_BATCH_MAX_TEXTURE_UNITS 4 // Maximum number of textures units that can be activated on batch drawing (SetShaderValueTexture())
56
+ *
57
+ * #define RL_MAX_MATRIX_STACK_SIZE 32 // Maximum size of internal Matrix stack
58
+ * #define RL_MAX_SHADER_LOCATIONS 32 // Maximum number of shader locations supported
59
+ * #define RL_CULL_DISTANCE_NEAR 0.01 // Default projection matrix near cull distance
60
+ * #define RL_CULL_DISTANCE_FAR 1000.0 // Default projection matrix far cull distance
61
+ *
62
+ * When loading a shader, the following vertex attributes and uniform
63
+ * location names are tried to be set automatically:
64
+ *
65
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_POSITION "vertexPosition" // Bound by default to shader location: 0
66
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD "vertexTexCoord" // Bound by default to shader location: 1
67
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_NORMAL "vertexNormal" // Bound by default to shader location: 2
68
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_COLOR "vertexColor" // Bound by default to shader location: 3
69
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_TANGENT "vertexTangent" // Bound by default to shader location: 4
70
+ * #define RL_DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2 "vertexTexCoord2" // Bound by default to shader location: 5
71
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_MVP "mvp" // model-view-projection matrix
72
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_VIEW "matView" // view matrix
73
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_PROJECTION "matProjection" // projection matrix
74
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_MODEL "matModel" // model matrix
75
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_NORMAL "matNormal" // normal matrix (transpose(inverse(matModelView))
76
+ * #define RL_DEFAULT_SHADER_UNIFORM_NAME_COLOR "colDiffuse" // color diffuse (base tint color, multiplied by texture color)
77
+ * #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE0 "texture0" // texture0 (texture slot active 0)
78
+ * #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE1 "texture1" // texture1 (texture slot active 1)
79
+ * #define RL_DEFAULT_SHADER_SAMPLER2D_NAME_TEXTURE2 "texture2" // texture2 (texture slot active 2)
80
+ *
81
+ * DEPENDENCIES:
82
+ * - OpenGL libraries (depending on platform and OpenGL version selected)
83
+ * - GLAD OpenGL extensions loading library (only for OpenGL 3.3 Core, 4.3 Core)
84
+ *
85
+ *
86
+ * LICENSE: zlib/libpng
87
+ *
88
+ * Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
89
+ *
90
+ * This software is provided "as-is", without any express or implied warranty. In no event
91
+ * will the authors be held liable for any damages arising from the use of this software.
92
+ *
93
+ * Permission is granted to anyone to use this software for any purpose, including commercial
94
+ * applications, and to alter it and redistribute it freely, subject to the following restrictions:
95
+ *
96
+ * 1. The origin of this software must not be misrepresented; you must not claim that you
97
+ * wrote the original software. If you use this software in a product, an acknowledgment
98
+ * in the product documentation would be appreciated but is not required.
99
+ *
100
+ * 2. Altered source versions must be plainly marked as such, and must not be misrepresented
101
+ * as being the original software.
102
+ *
103
+ * 3. This notice may not be removed or altered from any source distribution.
104
+ *
105
+ **********************************************************************************************/
106
+ // Function specifiers in case library is build/used as a shared library (Windows)
107
+ // NOTE: Microsoft specifiers to tell compiler that symbols are imported/exported from a .dll
108
+ // Function specifiers definition
109
+ // Support TRACELOG macros
110
+ // Allow custom memory allocators
111
+ // Security check in case no GRAPHICS_API_OPENGL_* defined
112
+ // Security check in case multiple GRAPHICS_API_OPENGL_* defined
113
+ // OpenGL 2.1 uses most of OpenGL 3.3 Core functionality
114
+ // WARNING: Specific parts are checked with #if defines
115
+ // OpenGL 4.3 uses OpenGL 3.3 Core functionality
116
+ // OpenGL ES 3.0 uses OpenGL ES 2.0 functionality (and more)
117
+ // Support framebuffer objects by default
118
+ // NOTE: Some driver implementation do not support it, despite they should
119
+ //----------------------------------------------------------------------------------
120
+ // Defines and Macros
121
+ //----------------------------------------------------------------------------------
122
+ // Default internal render batch elements limits
123
+ // This is the maximum amount of elements (quads) per batch
124
+ // NOTE: Be careful with text, every letter maps to a quad
125
+ // Internal Matrix stack
126
+ // Shader limits
127
+ // Projection matrix culling
128
+ // Texture parameters (equivalent to OpenGL defines)
129
+ // Matrix modes (equivalent to OpenGL)
130
+ // Primitive assembly draw modes
131
+ // GL equivalent data types
132
+ // GL buffer usage hint
133
+ // GL Shader type
134
+ // GL blending factors
135
+ // GL blending functions/equations
136
+ //----------------------------------------------------------------------------------
137
+ // Types and Structures Definition
138
+ //----------------------------------------------------------------------------------
139
+ // Dynamic vertex buffers (position + texcoords + colors + indices arrays)
140
+ typedef struct rlVertexBuffer {
141
+ int elementCount; // Number of elements in the buffer (QUADS)
142
+ float *vertices; // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
143
+ float *texcoords; // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
144
+ unsigned char *colors; // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
145
+ unsigned int *indices; // Vertex indices (in case vertex data comes indexed) (6 indices per quad)
146
+ unsigned int vaoId; // OpenGL Vertex Array Object id
147
+ unsigned int vboId[4]; // OpenGL Vertex Buffer Objects id (4 types of vertex data)
148
+ } rlVertexBuffer;
149
+ // Draw call type
150
+ // NOTE: Only texture changes register a new draw, other state-change-related elements are not
151
+ // used at this moment (vaoId, shaderId, matrices), raylib just forces a batch draw call if any
152
+ // of those state-change happens (this is done in core module)
153
+ typedef struct rlDrawCall {
154
+ int mode; // Drawing mode: LINES, TRIANGLES, QUADS
155
+ int vertexCount; // Number of vertex of the draw
156
+ int vertexAlignment; // Number of vertex required for index alignment (LINES, TRIANGLES)
157
+ //unsigned int vaoId; // Vertex array id to be used on the draw -> Using RLGL.currentBatch->vertexBuffer.vaoId
158
+ //unsigned int shaderId; // Shader id to be used on the draw -> Using RLGL.currentShaderId
159
+ unsigned int textureId; // Texture id to be used on the draw -> Use to create new draw call if changes
160
+ //Matrix projection; // Projection matrix for this draw -> Using RLGL.projection by default
161
+ //Matrix modelview; // Modelview matrix for this draw -> Using RLGL.modelview by default
162
+ } rlDrawCall;
163
+ // rlRenderBatch type
164
+ typedef struct rlRenderBatch {
165
+ int bufferCount; // Number of vertex buffers (multi-buffering support)
166
+ int currentBuffer; // Current buffer tracking in case of multi-buffering
167
+ rlVertexBuffer *vertexBuffer; // Dynamic buffer(s) for vertex data
168
+ rlDrawCall *draws; // Draw calls array, depends on textureId
169
+ int drawCounter; // Draw calls counter
170
+ float currentDepth; // Current depth value for next draw
171
+ } rlRenderBatch;
172
+ // OpenGL version
173
+ typedef enum {
174
+ RL_OPENGL_11 = 1, // OpenGL 1.1
175
+ RL_OPENGL_21, // OpenGL 2.1 (GLSL 120)
176
+ RL_OPENGL_33, // OpenGL 3.3 (GLSL 330)
177
+ RL_OPENGL_43, // OpenGL 4.3 (using GLSL 330)
178
+ RL_OPENGL_ES_20, // OpenGL ES 2.0 (GLSL 100)
179
+ RL_OPENGL_ES_30 // OpenGL ES 3.0 (GLSL 300 es)
180
+ } rlGlVersion;
181
+ // Trace log level
182
+ // NOTE: Organized by priority level
183
+ typedef enum {
184
+ RL_LOG_ALL = 0, // Display all logs
185
+ RL_LOG_TRACE, // Trace logging, intended for internal use only
186
+ RL_LOG_DEBUG, // Debug logging, used for internal debugging, it should be disabled on release builds
187
+ RL_LOG_INFO, // Info logging, used for program execution info
188
+ RL_LOG_WARNING, // Warning logging, used on recoverable failures
189
+ RL_LOG_ERROR, // Error logging, used on unrecoverable failures
190
+ RL_LOG_FATAL, // Fatal logging, used to abort program: exit(EXIT_FAILURE)
191
+ RL_LOG_NONE // Disable logging
192
+ } rlTraceLogLevel;
193
+ // Texture pixel formats
194
+ // NOTE: Support depends on OpenGL version
195
+ typedef enum {
196
+ RL_PIXELFORMAT_UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha)
197
+ RL_PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA, // 8*2 bpp (2 channels)
198
+ RL_PIXELFORMAT_UNCOMPRESSED_R5G6B5, // 16 bpp
199
+ RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8, // 24 bpp
200
+ RL_PIXELFORMAT_UNCOMPRESSED_R5G5B5A1, // 16 bpp (1 bit alpha)
201
+ RL_PIXELFORMAT_UNCOMPRESSED_R4G4B4A4, // 16 bpp (4 bit alpha)
202
+ RL_PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, // 32 bpp
203
+ RL_PIXELFORMAT_UNCOMPRESSED_R32, // 32 bpp (1 channel - float)
204
+ RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32, // 32*3 bpp (3 channels - float)
205
+ RL_PIXELFORMAT_UNCOMPRESSED_R32G32B32A32, // 32*4 bpp (4 channels - float)
206
+ RL_PIXELFORMAT_UNCOMPRESSED_R16, // 16 bpp (1 channel - half float)
207
+ RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16, // 16*3 bpp (3 channels - half float)
208
+ RL_PIXELFORMAT_UNCOMPRESSED_R16G16B16A16, // 16*4 bpp (4 channels - half float)
209
+ RL_PIXELFORMAT_COMPRESSED_DXT1_RGB, // 4 bpp (no alpha)
210
+ RL_PIXELFORMAT_COMPRESSED_DXT1_RGBA, // 4 bpp (1 bit alpha)
211
+ RL_PIXELFORMAT_COMPRESSED_DXT3_RGBA, // 8 bpp
212
+ RL_PIXELFORMAT_COMPRESSED_DXT5_RGBA, // 8 bpp
213
+ RL_PIXELFORMAT_COMPRESSED_ETC1_RGB, // 4 bpp
214
+ RL_PIXELFORMAT_COMPRESSED_ETC2_RGB, // 4 bpp
215
+ RL_PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA, // 8 bpp
216
+ RL_PIXELFORMAT_COMPRESSED_PVRT_RGB, // 4 bpp
217
+ RL_PIXELFORMAT_COMPRESSED_PVRT_RGBA, // 4 bpp
218
+ RL_PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA, // 8 bpp
219
+ RL_PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA // 2 bpp
220
+ } rlPixelFormat;
221
+ // Texture parameters: filter mode
222
+ // NOTE 1: Filtering considers mipmaps if available in the texture
223
+ // NOTE 2: Filter is accordingly set for minification and magnification
224
+ typedef enum {
225
+ RL_TEXTURE_FILTER_POINT = 0, // No filter, just pixel approximation
226
+ RL_TEXTURE_FILTER_BILINEAR, // Linear filtering
227
+ RL_TEXTURE_FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps)
228
+ RL_TEXTURE_FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x
229
+ RL_TEXTURE_FILTER_ANISOTROPIC_8X, // Anisotropic filtering 8x
230
+ RL_TEXTURE_FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x
231
+ } rlTextureFilter;
232
+ // Color blending modes (pre-defined)
233
+ typedef enum {
234
+ RL_BLEND_ALPHA = 0, // Blend textures considering alpha (default)
235
+ RL_BLEND_ADDITIVE, // Blend textures adding colors
236
+ RL_BLEND_MULTIPLIED, // Blend textures multiplying colors
237
+ RL_BLEND_ADD_COLORS, // Blend textures adding colors (alternative)
238
+ RL_BLEND_SUBTRACT_COLORS, // Blend textures subtracting colors (alternative)
239
+ RL_BLEND_ALPHA_PREMULTIPLY, // Blend premultiplied textures considering alpha
240
+ RL_BLEND_CUSTOM, // Blend textures using custom src/dst factors (use rlSetBlendFactors())
241
+ RL_BLEND_CUSTOM_SEPARATE // Blend textures using custom src/dst factors (use rlSetBlendFactorsSeparate())
242
+ } rlBlendMode;
243
+ // Shader location point type
244
+ typedef enum {
245
+ RL_SHADER_LOC_VERTEX_POSITION = 0, // Shader location: vertex attribute: position
246
+ RL_SHADER_LOC_VERTEX_TEXCOORD01, // Shader location: vertex attribute: texcoord01
247
+ RL_SHADER_LOC_VERTEX_TEXCOORD02, // Shader location: vertex attribute: texcoord02
248
+ RL_SHADER_LOC_VERTEX_NORMAL, // Shader location: vertex attribute: normal
249
+ RL_SHADER_LOC_VERTEX_TANGENT, // Shader location: vertex attribute: tangent
250
+ RL_SHADER_LOC_VERTEX_COLOR, // Shader location: vertex attribute: color
251
+ RL_SHADER_LOC_MATRIX_MVP, // Shader location: matrix uniform: model-view-projection
252
+ RL_SHADER_LOC_MATRIX_VIEW, // Shader location: matrix uniform: view (camera transform)
253
+ RL_SHADER_LOC_MATRIX_PROJECTION, // Shader location: matrix uniform: projection
254
+ RL_SHADER_LOC_MATRIX_MODEL, // Shader location: matrix uniform: model (transform)
255
+ RL_SHADER_LOC_MATRIX_NORMAL, // Shader location: matrix uniform: normal
256
+ RL_SHADER_LOC_VECTOR_VIEW, // Shader location: vector uniform: view
257
+ RL_SHADER_LOC_COLOR_DIFFUSE, // Shader location: vector uniform: diffuse color
258
+ RL_SHADER_LOC_COLOR_SPECULAR, // Shader location: vector uniform: specular color
259
+ RL_SHADER_LOC_COLOR_AMBIENT, // Shader location: vector uniform: ambient color
260
+ RL_SHADER_LOC_MAP_ALBEDO, // Shader location: sampler2d texture: albedo (same as: RL_SHADER_LOC_MAP_DIFFUSE)
261
+ RL_SHADER_LOC_MAP_METALNESS, // Shader location: sampler2d texture: metalness (same as: RL_SHADER_LOC_MAP_SPECULAR)
262
+ RL_SHADER_LOC_MAP_NORMAL, // Shader location: sampler2d texture: normal
263
+ RL_SHADER_LOC_MAP_ROUGHNESS, // Shader location: sampler2d texture: roughness
264
+ RL_SHADER_LOC_MAP_OCCLUSION, // Shader location: sampler2d texture: occlusion
265
+ RL_SHADER_LOC_MAP_EMISSION, // Shader location: sampler2d texture: emission
266
+ RL_SHADER_LOC_MAP_HEIGHT, // Shader location: sampler2d texture: height
267
+ RL_SHADER_LOC_MAP_CUBEMAP, // Shader location: samplerCube texture: cubemap
268
+ RL_SHADER_LOC_MAP_IRRADIANCE, // Shader location: samplerCube texture: irradiance
269
+ RL_SHADER_LOC_MAP_PREFILTER, // Shader location: samplerCube texture: prefilter
270
+ RL_SHADER_LOC_MAP_BRDF // Shader location: sampler2d texture: brdf
271
+ } rlShaderLocationIndex;
272
+ // Shader uniform data type
273
+ typedef enum {
274
+ RL_SHADER_UNIFORM_FLOAT = 0, // Shader uniform type: float
275
+ RL_SHADER_UNIFORM_VEC2, // Shader uniform type: vec2 (2 float)
276
+ RL_SHADER_UNIFORM_VEC3, // Shader uniform type: vec3 (3 float)
277
+ RL_SHADER_UNIFORM_VEC4, // Shader uniform type: vec4 (4 float)
278
+ RL_SHADER_UNIFORM_INT, // Shader uniform type: int
279
+ RL_SHADER_UNIFORM_IVEC2, // Shader uniform type: ivec2 (2 int)
280
+ RL_SHADER_UNIFORM_IVEC3, // Shader uniform type: ivec3 (3 int)
281
+ RL_SHADER_UNIFORM_IVEC4, // Shader uniform type: ivec4 (4 int)
282
+ RL_SHADER_UNIFORM_SAMPLER2D // Shader uniform type: sampler2d
283
+ } rlShaderUniformDataType;
284
+ // Shader attribute data types
285
+ typedef enum {
286
+ RL_SHADER_ATTRIB_FLOAT = 0, // Shader attribute type: float
287
+ RL_SHADER_ATTRIB_VEC2, // Shader attribute type: vec2 (2 float)
288
+ RL_SHADER_ATTRIB_VEC3, // Shader attribute type: vec3 (3 float)
289
+ RL_SHADER_ATTRIB_VEC4 // Shader attribute type: vec4 (4 float)
290
+ } rlShaderAttributeDataType;
291
+ // Framebuffer attachment type
292
+ // NOTE: By default up to 8 color channels defined, but it can be more
293
+ typedef enum {
294
+ RL_ATTACHMENT_COLOR_CHANNEL0 = 0, // Framebuffer attachment type: color 0
295
+ RL_ATTACHMENT_COLOR_CHANNEL1 = 1, // Framebuffer attachment type: color 1
296
+ RL_ATTACHMENT_COLOR_CHANNEL2 = 2, // Framebuffer attachment type: color 2
297
+ RL_ATTACHMENT_COLOR_CHANNEL3 = 3, // Framebuffer attachment type: color 3
298
+ RL_ATTACHMENT_COLOR_CHANNEL4 = 4, // Framebuffer attachment type: color 4
299
+ RL_ATTACHMENT_COLOR_CHANNEL5 = 5, // Framebuffer attachment type: color 5
300
+ RL_ATTACHMENT_COLOR_CHANNEL6 = 6, // Framebuffer attachment type: color 6
301
+ RL_ATTACHMENT_COLOR_CHANNEL7 = 7, // Framebuffer attachment type: color 7
302
+ RL_ATTACHMENT_DEPTH = 100, // Framebuffer attachment type: depth
303
+ RL_ATTACHMENT_STENCIL = 200, // Framebuffer attachment type: stencil
304
+ } rlFramebufferAttachType;
305
+ // Framebuffer texture attachment type
306
+ typedef enum {
307
+ RL_ATTACHMENT_CUBEMAP_POSITIVE_X = 0, // Framebuffer texture attachment type: cubemap, +X side
308
+ RL_ATTACHMENT_CUBEMAP_NEGATIVE_X = 1, // Framebuffer texture attachment type: cubemap, -X side
309
+ RL_ATTACHMENT_CUBEMAP_POSITIVE_Y = 2, // Framebuffer texture attachment type: cubemap, +Y side
310
+ RL_ATTACHMENT_CUBEMAP_NEGATIVE_Y = 3, // Framebuffer texture attachment type: cubemap, -Y side
311
+ RL_ATTACHMENT_CUBEMAP_POSITIVE_Z = 4, // Framebuffer texture attachment type: cubemap, +Z side
312
+ RL_ATTACHMENT_CUBEMAP_NEGATIVE_Z = 5, // Framebuffer texture attachment type: cubemap, -Z side
313
+ RL_ATTACHMENT_TEXTURE2D = 100, // Framebuffer texture attachment type: texture2d
314
+ RL_ATTACHMENT_RENDERBUFFER = 200, // Framebuffer texture attachment type: renderbuffer
315
+ } rlFramebufferAttachTextureType;
316
+ // Face culling mode
317
+ typedef enum {
318
+ RL_CULL_FACE_FRONT = 0,
319
+ RL_CULL_FACE_BACK
320
+ } rlCullMode;
321
+ //------------------------------------------------------------------------------------
322
+ // Functions Declaration - Matrix operations
323
+ //------------------------------------------------------------------------------------
324
+ void rlMatrixMode(int mode); // Choose the current matrix to be transformed
325
+ void rlPushMatrix(void); // Push the current matrix to stack
326
+ void rlPopMatrix(void); // Pop latest inserted matrix from stack
327
+ void rlLoadIdentity(void); // Reset current matrix to identity matrix
328
+ void rlTranslatef(float x, float y, float z); // Multiply the current matrix by a translation matrix
329
+ void rlRotatef(float angle, float x, float y, float z); // Multiply the current matrix by a rotation matrix
330
+ void rlScalef(float x, float y, float z); // Multiply the current matrix by a scaling matrix
331
+ void rlMultMatrixf(const float *matf); // Multiply the current matrix by another matrix
332
+ void rlFrustum(double left, double right, double bottom, double top, double znear, double zfar);
333
+ void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar);
334
+ void rlViewport(int x, int y, int width, int height); // Set the viewport area
335
+ //------------------------------------------------------------------------------------
336
+ // Functions Declaration - Vertex level operations
337
+ //------------------------------------------------------------------------------------
338
+ void rlBegin(int mode); // Initialize drawing mode (how to organize vertex)
339
+ void rlEnd(void); // Finish vertex providing
340
+ void rlVertex2i(int x, int y); // Define one vertex (position) - 2 int
341
+ void rlVertex2f(float x, float y); // Define one vertex (position) - 2 float
342
+ void rlVertex3f(float x, float y, float z); // Define one vertex (position) - 3 float
343
+ void rlTexCoord2f(float x, float y); // Define one vertex (texture coordinate) - 2 float
344
+ void rlNormal3f(float x, float y, float z); // Define one vertex (normal) - 3 float
345
+ void rlColor4ub(unsigned char r, unsigned char g, unsigned char b, unsigned char a); // Define one vertex (color) - 4 byte
346
+ void rlColor3f(float x, float y, float z); // Define one vertex (color) - 3 float
347
+ void rlColor4f(float x, float y, float z, float w); // Define one vertex (color) - 4 float
348
+ //------------------------------------------------------------------------------------
349
+ // Functions Declaration - OpenGL style functions (common to 1.1, 3.3+, ES2)
350
+ // NOTE: This functions are used to completely abstract raylib code from OpenGL layer,
351
+ // some of them are direct wrappers over OpenGL calls, some others are custom
352
+ //------------------------------------------------------------------------------------
353
+ // Vertex buffers state
354
+ bool rlEnableVertexArray(unsigned int vaoId); // Enable vertex array (VAO, if supported)
355
+ void rlDisableVertexArray(void); // Disable vertex array (VAO, if supported)
356
+ void rlEnableVertexBuffer(unsigned int id); // Enable vertex buffer (VBO)
357
+ void rlDisableVertexBuffer(void); // Disable vertex buffer (VBO)
358
+ void rlEnableVertexBufferElement(unsigned int id);// Enable vertex buffer element (VBO element)
359
+ void rlDisableVertexBufferElement(void); // Disable vertex buffer element (VBO element)
360
+ void rlEnableVertexAttribute(unsigned int index); // Enable vertex attribute index
361
+ void rlDisableVertexAttribute(unsigned int index);// Disable vertex attribute index
362
+ // Textures state
363
+ void rlActiveTextureSlot(int slot); // Select and active a texture slot
364
+ void rlEnableTexture(unsigned int id); // Enable texture
365
+ void rlDisableTexture(void); // Disable texture
366
+ void rlEnableTextureCubemap(unsigned int id); // Enable texture cubemap
367
+ void rlDisableTextureCubemap(void); // Disable texture cubemap
368
+ void rlTextureParameters(unsigned int id, int param, int value); // Set texture parameters (filter, wrap)
369
+ void rlCubemapParameters(unsigned int id, int param, int value); // Set cubemap parameters (filter, wrap)
370
+ // Shader state
371
+ void rlEnableShader(unsigned int id); // Enable shader program
372
+ void rlDisableShader(void); // Disable shader program
373
+ // Framebuffer state
374
+ void rlEnableFramebuffer(unsigned int id); // Enable render texture (fbo)
375
+ void rlDisableFramebuffer(void); // Disable render texture (fbo), return to default framebuffer
376
+ void rlActiveDrawBuffers(int count); // Activate multiple draw color buffers
377
+ void rlBlitFramebuffer(int srcX, int srcY, int srcWidth, int srcHeight, int dstX, int dstY, int dstWidth, int dstHeight, int bufferMask); // Blit active framebuffer to main framebuffer
378
+ // General render state
379
+ void rlEnableColorBlend(void); // Enable color blending
380
+ void rlDisableColorBlend(void); // Disable color blending
381
+ void rlEnableDepthTest(void); // Enable depth test
382
+ void rlDisableDepthTest(void); // Disable depth test
383
+ void rlEnableDepthMask(void); // Enable depth write
384
+ void rlDisableDepthMask(void); // Disable depth write
385
+ void rlEnableBackfaceCulling(void); // Enable backface culling
386
+ void rlDisableBackfaceCulling(void); // Disable backface culling
387
+ void rlSetCullFace(int mode); // Set face culling mode
388
+ void rlEnableScissorTest(void); // Enable scissor test
389
+ void rlDisableScissorTest(void); // Disable scissor test
390
+ void rlScissor(int x, int y, int width, int height); // Scissor test
391
+ void rlEnableWireMode(void); // Enable wire mode
392
+ void rlEnablePointMode(void); // Enable point mode
393
+ void rlDisableWireMode(void); // Disable wire mode ( and point ) maybe rename
394
+ void rlSetLineWidth(float width); // Set the line drawing width
395
+ float rlGetLineWidth(void); // Get the line drawing width
396
+ void rlEnableSmoothLines(void); // Enable line aliasing
397
+ void rlDisableSmoothLines(void); // Disable line aliasing
398
+ void rlEnableStereoRender(void); // Enable stereo rendering
399
+ void rlDisableStereoRender(void); // Disable stereo rendering
400
+ bool rlIsStereoRenderEnabled(void); // Check if stereo render is enabled
401
+ void rlClearColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a); // Clear color buffer with color
402
+ void rlClearScreenBuffers(void); // Clear used screen buffers (color and depth)
403
+ void rlCheckErrors(void); // Check and log OpenGL error codes
404
+ void rlSetBlendMode(int mode); // Set blending mode
405
+ void rlSetBlendFactors(int glSrcFactor, int glDstFactor, int glEquation); // Set blending mode factor and equation (using OpenGL factors)
406
+ void rlSetBlendFactorsSeparate(int glSrcRGB, int glDstRGB, int glSrcAlpha, int glDstAlpha, int glEqRGB, int glEqAlpha); // Set blending mode factors and equations separately (using OpenGL factors)
407
+ //------------------------------------------------------------------------------------
408
+ // Functions Declaration - rlgl functionality
409
+ //------------------------------------------------------------------------------------
410
+ // rlgl initialization functions
411
+ void rlglInit(int width, int height); // Initialize rlgl (buffers, shaders, textures, states)
412
+ void rlglClose(void); // De-initialize rlgl (buffers, shaders, textures)
413
+ void rlLoadExtensions(void *loader); // Load OpenGL extensions (loader function required)
414
+ int rlGetVersion(void); // Get current OpenGL version
415
+ void rlSetFramebufferWidth(int width); // Set current framebuffer width
416
+ int rlGetFramebufferWidth(void); // Get default framebuffer width
417
+ void rlSetFramebufferHeight(int height); // Set current framebuffer height
418
+ int rlGetFramebufferHeight(void); // Get default framebuffer height
419
+ unsigned int rlGetTextureIdDefault(void); // Get default texture id
420
+ unsigned int rlGetShaderIdDefault(void); // Get default shader id
421
+ int *rlGetShaderLocsDefault(void); // Get default shader locations
422
+ // Render batch management
423
+ // NOTE: rlgl provides a default render batch to behave like OpenGL 1.1 immediate mode
424
+ // but this render batch API is exposed in case of custom batches are required
425
+ rlRenderBatch rlLoadRenderBatch(int numBuffers, int bufferElements); // Load a render batch system
426
+ void rlUnloadRenderBatch(rlRenderBatch batch); // Unload render batch system
427
+ void rlDrawRenderBatch(rlRenderBatch *batch); // Draw render batch data (Update->Draw->Reset)
428
+ void rlSetRenderBatchActive(rlRenderBatch *batch); // Set the active render batch for rlgl (NULL for default internal)
429
+ void rlDrawRenderBatchActive(void); // Update and draw internal render batch
430
+ bool rlCheckRenderBatchLimit(int vCount); // Check internal buffer overflow for a given number of vertex
431
+ void rlSetTexture(unsigned int id); // Set current texture for render batch and check buffers limits
432
+ //------------------------------------------------------------------------------------------------------------------------
433
+ // Vertex buffers management
434
+ unsigned int rlLoadVertexArray(void); // Load vertex array (vao) if supported
435
+ unsigned int rlLoadVertexBuffer(const void *buffer, int size, bool dynamic); // Load a vertex buffer attribute
436
+ unsigned int rlLoadVertexBufferElement(const void *buffer, int size, bool dynamic); // Load a new attributes element buffer
437
+ void rlUpdateVertexBuffer(unsigned int bufferId, const void *data, int dataSize, int offset); // Update GPU buffer with new data
438
+ void rlUpdateVertexBufferElements(unsigned int id, const void *data, int dataSize, int offset); // Update vertex buffer elements with new data
439
+ void rlUnloadVertexArray(unsigned int vaoId);
440
+ void rlUnloadVertexBuffer(unsigned int vboId);
441
+ void rlSetVertexAttribute(unsigned int index, int compSize, int type, bool normalized, int stride, const void *pointer);
442
+ void rlSetVertexAttributeDivisor(unsigned int index, int divisor);
443
+ void rlSetVertexAttributeDefault(int locIndex, const void *value, int attribType, int count); // Set vertex attribute default value
444
+ void rlDrawVertexArray(int offset, int count);
445
+ void rlDrawVertexArrayElements(int offset, int count, const void *buffer);
446
+ void rlDrawVertexArrayInstanced(int offset, int count, int instances);
447
+ void rlDrawVertexArrayElementsInstanced(int offset, int count, const void *buffer, int instances);
448
+ // Textures management
449
+ unsigned int rlLoadTexture(const void *data, int width, int height, int format, int mipmapCount); // Load texture in GPU
450
+ unsigned int rlLoadTextureDepth(int width, int height, bool useRenderBuffer); // Load depth texture/renderbuffer (to be attached to fbo)
451
+ unsigned int rlLoadTextureCubemap(const void *data, int size, int format); // Load texture cubemap
452
+ void rlUpdateTexture(unsigned int id, int offsetX, int offsetY, int width, int height, int format, const void *data); // Update GPU texture with new data
453
+ void rlGetGlTextureFormats(int format, unsigned int *glInternalFormat, unsigned int *glFormat, unsigned int *glType); // Get OpenGL internal formats
454
+ const char *rlGetPixelFormatName(unsigned int format); // Get name string for pixel format
455
+ void rlUnloadTexture(unsigned int id); // Unload texture from GPU memory
456
+ void rlGenTextureMipmaps(unsigned int id, int width, int height, int format, int *mipmaps); // Generate mipmap data for selected texture
457
+ void *rlReadTexturePixels(unsigned int id, int width, int height, int format); // Read texture pixel data
458
+ unsigned char *rlReadScreenPixels(int width, int height); // Read screen pixel data (color buffer)
459
+ // Framebuffer management (fbo)
460
+ unsigned int rlLoadFramebuffer(int width, int height); // Load an empty framebuffer
461
+ void rlFramebufferAttach(unsigned int fboId, unsigned int texId, int attachType, int texType, int mipLevel); // Attach texture/renderbuffer to a framebuffer
462
+ bool rlFramebufferComplete(unsigned int id); // Verify framebuffer is complete
463
+ void rlUnloadFramebuffer(unsigned int id); // Delete framebuffer from GPU
464
+ // Shaders management
465
+ unsigned int rlLoadShaderCode(const char *vsCode, const char *fsCode); // Load shader from code strings
466
+ unsigned int rlCompileShader(const char *shaderCode, int type); // Compile custom shader and return shader id (type: RL_VERTEX_SHADER, RL_FRAGMENT_SHADER, RL_COMPUTE_SHADER)
467
+ unsigned int rlLoadShaderProgram(unsigned int vShaderId, unsigned int fShaderId); // Load custom shader program
468
+ void rlUnloadShaderProgram(unsigned int id); // Unload shader program
469
+ int rlGetLocationUniform(unsigned int shaderId, const char *uniformName); // Get shader location uniform
470
+ int rlGetLocationAttrib(unsigned int shaderId, const char *attribName); // Get shader location attribute
471
+ void rlSetUniform(int locIndex, const void *value, int uniformType, int count); // Set shader value uniform
472
+ void rlSetUniformMatrix(int locIndex, Matrix mat); // Set shader value matrix
473
+ void rlSetUniformSampler(int locIndex, unsigned int textureId); // Set shader value sampler
474
+ void rlSetShader(unsigned int id, int *locs); // Set shader currently active (id and locations)
475
+ // Compute shader management
476
+ unsigned int rlLoadComputeShaderProgram(unsigned int shaderId); // Load compute shader program
477
+ void rlComputeShaderDispatch(unsigned int groupX, unsigned int groupY, unsigned int groupZ); // Dispatch compute shader (equivalent to *draw* for graphics pipeline)
478
+ // Shader buffer storage object management (ssbo)
479
+ unsigned int rlLoadShaderBuffer(unsigned int size, const void *data, int usageHint); // Load shader storage buffer object (SSBO)
480
+ void rlUnloadShaderBuffer(unsigned int ssboId); // Unload shader storage buffer object (SSBO)
481
+ void rlUpdateShaderBuffer(unsigned int id, const void *data, unsigned int dataSize, unsigned int offset); // Update SSBO buffer data
482
+ void rlBindShaderBuffer(unsigned int id, unsigned int index); // Bind SSBO buffer
483
+ void rlReadShaderBuffer(unsigned int id, void *dest, unsigned int count, unsigned int offset); // Read SSBO buffer data (GPU->CPU)
484
+ void rlCopyShaderBuffer(unsigned int destId, unsigned int srcId, unsigned int destOffset, unsigned int srcOffset, unsigned int count); // Copy SSBO data between buffers
485
+ unsigned int rlGetShaderBufferSize(unsigned int id); // Get SSBO buffer size
486
+ // Buffer management
487
+ void rlBindImageTexture(unsigned int id, unsigned int index, int format, bool readonly); // Bind image texture
488
+ // Matrix state management
489
+ Matrix rlGetMatrixModelview(void); // Get internal modelview matrix
490
+ Matrix rlGetMatrixProjection(void); // Get internal projection matrix
491
+ Matrix rlGetMatrixTransform(void); // Get internal accumulated transform matrix
492
+ Matrix rlGetMatrixProjectionStereo(int eye); // Get internal projection matrix for stereo render (selected eye)
493
+ Matrix rlGetMatrixViewOffsetStereo(int eye); // Get internal view offset matrix for stereo render (selected eye)
494
+ void rlSetMatrixProjection(Matrix proj); // Set a custom projection matrix (replaces internal projection matrix)
495
+ void rlSetMatrixModelview(Matrix view); // Set a custom modelview matrix (replaces internal modelview matrix)
496
+ void rlSetMatrixProjectionStereo(Matrix right, Matrix left); // Set eyes projection matrices for stereo rendering
497
+ void rlSetMatrixViewOffsetStereo(Matrix right, Matrix left); // Set eyes view offsets matrices for stereo rendering
498
+ // Quick and dirty cube/quad buffers load->draw->unload
499
+ void rlLoadDrawCube(void); // Load and draw a cube
500
+ void rlLoadDrawQuad(void); // Load and draw a quad
501
+ /***********************************************************************************
502
+ *
503
+ * RLGL IMPLEMENTATION
504
+ *
505
+ ************************************************************************************/
raylib/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "5.0.0.3"
1
+ __version__ = "5.0.0.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: raylib
3
- Version: 5.0.0.3
3
+ Version: 5.0.0.5
4
4
  Summary: Python CFFI bindings for Raylib
5
5
  Home-page: https://github.com/electronstudio/raylib-python-cffi
6
6
  Author: Electron Studio
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.8
17
17
  Classifier: Programming Language :: Python :: 3.7
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: cffi >=1.17.0rc1
20
+ Requires-Dist: cffi>=1.17.1
21
21
 
22
22
  # Python Bindings for Raylib 5.0
23
23
 
@@ -58,7 +58,7 @@ Then install
58
58
  python3 -m pip install setuptools
59
59
  python3 -m pip install raylib
60
60
 
61
- On most platforms it should install a binary wheel (Windows 10 x64, MacOS 10.15 x64, Linux Ubuntu1804 x64).
61
+ On most platforms it should install a binary wheel (Windows 10 x64, MacOS 12 x64/arm64, Linux Ubuntu2004 x64/arm64).
62
62
 
63
63
  If yours isn't available then pip will attempt to build from source, in which case you will need to have Raylib development libs installed, e.g.
64
64
  using homebrew, apt, etc.
@@ -179,7 +179,7 @@ If you need more performance, do in this order:
179
179
  in your update loop
180
180
  and then only convert them to C data structures when you have to call the C functions for drawing.
181
181
 
182
- 3. The raylib.* functions are potentially 1.5x faster than the pyray.* equivalents, so if you need a tiny bit more performance
182
+ 3. The raylib.* functions are potentially *slightly* faster than the pyray.* equivalents, so if you need a tiny bit more performance
183
183
  you can switch your inner loop functions to these.
184
184
 
185
185
  4. There is a version of Python that is faster than Pypy: GraalPy. However it's not fully compatible with all Python
@@ -0,0 +1,23 @@
1
+ pyray/__init__.py,sha256=6sEm8KxRaK2B2PQo7ZlbXkHoxBDLW43wYSs_Cl7rUMg,7119
2
+ pyray/__init__.pyi,sha256=TlSjWwfJdjyVBAMm3eS6ueCh-Wz0Vq6gVSFabEzFxyc,173184
3
+ pyray/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ raylib/__init__.py,sha256=zTSGLz_KdS8jJZKAXOGeaaWHZZPsrmFKAwxRt4iDFvU,1193
5
+ raylib/__init__.pyi,sha256=5X8aWKjsPEVzMlXaAmej-y8FQfevmwGDhci8SQVGrsM,152655
6
+ raylib/_raylib_cffi.cpython-310-darwin.so,sha256=FBmgnkGdEnMHCi4lzP21lJ_hnaGLxqz1lQU3mL1H8Rg,2846960
7
+ raylib/build.py,sha256=2ALzT9DBkpN8qReIarxFcAlVJ3fcrmxpZBX2CEm7QRQ,8679
8
+ raylib/colors.py,sha256=_u-mYrpdx7_v_4wnJrnSu_m36ixKJWbort780_V6rTw,1523
9
+ raylib/defines.py,sha256=L1Wr1LGz1da7wCvYCXHTpZFfVNbra8S4bcFim28LjJM,15807
10
+ raylib/enums.py,sha256=RtQpN23zViI2mQSHPPc0Ay4IvNdiDk_xggdMPLCR0ng,17586
11
+ raylib/glfw3.h.modified,sha256=NIUx9jE3V1Ir4NQehh02sTwiT_7i4PxlZshO24gHfGg,208458
12
+ raylib/physac.h.modified,sha256=GZEIVO0ot8kuHkb7IIuNPieilfC3Poxn6BLlQyvRGEY,9895
13
+ raylib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ raylib/raygui.h.modified,sha256=5NKMOQHYZsoD51ewmIezTkNuTKdERqde486NXjbys6M,44607
15
+ raylib/raylib.h.modified,sha256=unvQ4E54KOdr8ScXltaLbgF4eh7wZbVHGFqCupeL3hE,102852
16
+ raylib/raymath.h.modified,sha256=GaiB8wHjC-Hzfx7DWrK9geLH555QFBJyAMszTWP9q0g,23185
17
+ raylib/rlgl.h.modified,sha256=F0bhxnn3Y7K9XOSjOag0N4xpcavCZ9riSFjUT3A9uWk,35329
18
+ raylib/version.py,sha256=TJFIkW6_BlGa9PGistgwofqMEQ6si0P5KY5qQyU8jyc,23
19
+ raylib-5.0.0.5.dist-info/LICENSE,sha256=C-zxZWe-t3-iUrdmRjHdF3yPmhiJ5ImVtFN5xxMOUwM,14198
20
+ raylib-5.0.0.5.dist-info/METADATA,sha256=rQk2FgvjX8-kQk0m_c29eCIYzevno2nvBlbBWyYY3no,8070
21
+ raylib-5.0.0.5.dist-info/WHEEL,sha256=nhj80l19nxJ1hG06BXbDsZO4W6BJh5pq_DGaGn40OdY,109
22
+ raylib-5.0.0.5.dist-info/top_level.txt,sha256=PnMBDWaUP4jsbn_NewagcC9FjHYpzSAIQuhxNzt9hkg,13
23
+ raylib-5.0.0.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (74.1.2)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-macosx_14_0_arm64
5
5
 
Binary file
@@ -1,15 +0,0 @@
1
- pyray/__init__.py,sha256=6sEm8KxRaK2B2PQo7ZlbXkHoxBDLW43wYSs_Cl7rUMg,7119
2
- pyray/__init__.pyi,sha256=NzZYOclAa6OEJkekHN704GI9AKnAXh-YrSv_QR-1TQg,149512
3
- raylib/__init__.py,sha256=DWXPmoq7tC5wzZsrt6rReGy1RflyZwk-SdF-9lBZHok,919
4
- raylib/__init__.pyi,sha256=3YBqdluKw1mXCDJI_vkp188Y7N2uxd3FKMHGJ6xlx0I,137557
5
- raylib/_raylib_cffi.abi3.so,sha256=Q8_yiNAw8PD1BL8CDUumxbo-MoJ25XUY9b5P8vgGhbs,2845656
6
- raylib/build.py,sha256=GkLvtK5cxhIUmqNW113QNGt-fFmqGxq6qCwrAn_HlzM,8460
7
- raylib/colors.py,sha256=_u-mYrpdx7_v_4wnJrnSu_m36ixKJWbort780_V6rTw,1523
8
- raylib/defines.py,sha256=lMv6zU8WSkaH5Dj5Ydx0AlggeA-r76xePcA1M7EudnA,15951
9
- raylib/enums.py,sha256=RtQpN23zViI2mQSHPPc0Ay4IvNdiDk_xggdMPLCR0ng,17586
10
- raylib/version.py,sha256=kuKcU79UeiMEhJ65u2Xk2MIB8Bc2rN6wJHdZ3MYmvP4,23
11
- raylib-5.0.0.3.dist-info/LICENSE,sha256=C-zxZWe-t3-iUrdmRjHdF3yPmhiJ5ImVtFN5xxMOUwM,14198
12
- raylib-5.0.0.3.dist-info/METADATA,sha256=ekuSWjQ6Lv64-mRVN_CgrO7r0XZOYNdphmnKd3I_uHQ,8059
13
- raylib-5.0.0.3.dist-info/WHEEL,sha256=2EVZhLi4jIk3Z3bCc03RR_L3RG1Nt_XPRZ0Vawo2Rps,110
14
- raylib-5.0.0.3.dist-info/top_level.txt,sha256=PnMBDWaUP4jsbn_NewagcC9FjHYpzSAIQuhxNzt9hkg,13
15
- raylib-5.0.0.3.dist-info/RECORD,,