Jeffery Myers

Results 40 comments of Jeffery Myers

You can still overwrite config.h and it will be the same as before. This just means you do not have to if you want another option. You are the author...

> @JeffM2501 Thanks for the further explanation, just one last concern, if I define `make -DSUPPORT_FILEFORMAT_KTX`, does it default to 1 and gets enabled? Or is it required to `make...

![image](https://github.com/user-attachments/assets/be768102-aafd-4f4a-9b24-c09914a20e99) This is exactly what this PR does. I left all the platform stuff as #if (defined), because it better fits the toggle use case, where the config items fit...

I had a similar need, all my files are managed by a resource manager that may read from an archive. I added an optional callback to the library that my...

I think you can do this for all the GLFW platforms, not just windows. I think you should also check the other desktop platforms and see if they need the...

> @Andersama Sorry, I don't understand the use case of this change... user should know the flags they are modifying The use case is this. ``` SetConfigFlags(FLAG_WINDOW_MINIMIZED); InitWindow(.....); ``` this...

If you remove that first block, how do the colors get copied from the u8 buffer into the raylib managed memory? This seems bad. We can't just use the attribute...

I have inspected the file that causes this issue. The GLTF file has two sets of color attributes for the same mesh node. One at 8 bits per pixel and...

This is more than an example, you have changes to rModels.c..... are they required for this to work? If so they should be addressed in a separate PR that describes...