From c49c5c1e79ceb38dad8126b328086fe6856223a4 Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Mon, 4 Apr 2022 20:25:56 +0300 Subject: [PATCH] Update according to the conversation on #bindings-dev --- raylib-enumerated-types.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/raylib-enumerated-types.md b/raylib-enumerated-types.md index ce0ed73..07b9f92 100644 --- a/raylib-enumerated-types.md +++ b/raylib-enumerated-types.md @@ -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); ``` [`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) ```c SetShaderValue(Shader shader, int locIndex, const void *value, int uniformType); 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) ```c