Update according to the conversation on #bindings-dev

Antonis Geralis
2022-04-04 20:25:56 +03:00
parent 2f2dfbe0ea
commit c49c5c1e79

@ -52,13 +52,13 @@ Here it is the list with the provided enums and the functions intended to use th
GetGamepadAxisMovement(int gamepad, int axis); GetGamepadAxisMovement(int gamepad, int axis);
``` ```
[`enum ShaderLocationIndex`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L705) [`enum ShaderLocationIndex`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L705)
```c
struct Shader.locs[index]
```
[`enum ShaderUniformDataType`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L737) [`enum ShaderUniformDataType`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L737)
```c ```c
SetShaderValue(Shader shader, int locIndex, const void *value, int uniformType); SetShaderValue(Shader shader, int locIndex, const void *value, int uniformType);
SetShaderValueV(Shader shader, int locIndex, const void *value, int uniformType, int count); SetShaderValueV(Shader shader, int locIndex, const void *value, int uniformType, int count);
SetShaderValueMatrix(Shader shader, int locIndex, Matrix mat);
SetShaderValueTexture(Shader shader, int locIndex, Texture2D texture);
struct Shader.locs[index]
``` ```
[`enum MaterialMapIndex`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L750) [`enum MaterialMapIndex`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L750)
```c ```c