Ver código fonte

Tutorial 11_fractal fixed

legacy
Guillaume Bittoun Sam Hocevar <sam@hocevar.net> 8 anos atrás
pai
commit
da1c26728c
1 arquivos alterados com 3 adições e 3 exclusões
  1. +3
    -3
      doc/tutorial/11_fractal.cpp

+ 3
- 3
doc/tutorial/11_fractal.cpp Ver arquivo

@@ -97,15 +97,15 @@ public:
}

#if !defined __native_client__
m_centertext = new Text(nullptr, "data/font/ascii.png");
m_centertext = new Text("", "data/font/ascii.png");
m_centertext->SetPos(vec3(5, (float)m_window_size.y - 15, 1));
Ticker::Ref(m_centertext);

m_mousetext = new Text(nullptr, "data/font/ascii.png");
m_mousetext = new Text("", "data/font/ascii.png");
m_mousetext->SetPos(vec3(5, (float)m_window_size.y - 29, 1));
Ticker::Ref(m_mousetext);

m_zoomtext = new Text(nullptr, "data/font/ascii.png");
m_zoomtext = new Text("", "data/font/ascii.png");
m_zoomtext->SetPos(vec3(5, (float)m_window_size.y - 43, 1));
Ticker::Ref(m_zoomtext);
#endif


Carregando…
Cancelar
Salvar