Explorar el Código

EasyMesh : Copy CTor fix.

undefined
Benjamin ‘Touky’ Huet Sam Hocevar <sam@hocevar.net> hace 11 años
padre
commit
7a3c90ef39
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/easymesh/easymesh.cpp

+ 4
- 1
src/easymesh/easymesh.cpp Ver fichero

@@ -432,7 +432,10 @@ EasyMesh::EasyMesh()
//-----------------------------------------------------------------------------
EasyMesh::EasyMesh(const EasyMesh& em)
{
*this = em;
//*this = em;
m_indices = em.m_indices;
m_vert = em.m_vert;
m_cursors = em.m_cursors;
m_build_data = nullptr;
m_gpu_data = GpuEasyMeshData();
if (m_indices.Count() && m_vert.Count() && m_cursors.Count())


Cargando…
Cancelar
Guardar