Sfoglia il codice sorgente

Update shaders_mesh_instancing.c

adding a missing  'locs[SHADER_LOC_MATRIX_MODEL] = GetShaderLocationAttrib(shader, "instanceTransform");'
pull/4689/head
MikiZX1 3 giorni fa
committed by GitHub
parent
commit
21b5383a26
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: B5690EEEBB952194
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      examples/shaders/shaders_mesh_instancing.c

+ 2
- 1
examples/shaders/shaders_mesh_instancing.c Vedi File

@ -73,7 +73,8 @@ int main(void)
// Get shader locations
shader.locs[SHADER_LOC_MATRIX_MVP] = GetShaderLocation(shader, "mvp");
shader.locs[SHADER_LOC_VECTOR_VIEW] = GetShaderLocation(shader, "viewPos");
shader.locs[SHADER_LOC_MATRIX_MODEL] = GetShaderLocationAttrib(shader, "instanceTransform");
// Set shader value: ambient light level
int ambientLoc = GetShaderLocation(shader, "ambient");
SetShaderValue(shader, ambientLoc, (float[4]){ 0.2f, 0.2f, 0.2f, 1.0f }, SHADER_UNIFORM_VEC4);

Caricamento…
Annulla
Salva