Sfoglia il codice sorgente

coding style my ass

legacy
jeunathe jnat 12 anni fa
parent
commit
08e81c93d1
1 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. +6
    -4
      src/easymesh/easymesh.cpp

+ 6
- 4
src/easymesh/easymesh.cpp Vedi File

@@ -62,13 +62,15 @@ void EasyMesh::CloseBrace()
m_cursors.Pop();
}

void EasyMesh::MeshConvert(Shader* ProvidedShader)
void EasyMesh::MeshConvert(Shader* provided_shader)
{
if(ProvidedShader == NULL)
if(provided_shader == NULL)
{
m_gpu.shader = Shader::Create(lolfx_shiny);
}else{
m_gpu.shader = ProvidedShader;
}
else
{
m_gpu.shader = provided_shader;
}

m_gpu.modelview = m_gpu.shader->GetUniformLocation("in_ModelView");


Caricamento…
Annulla
Salva