~unity-team/nux/nux-remove-glew-mx

« back to all changes in this revision

Viewing changes to Nux/EditTextBox.cpp

  • Committer: Jay Taoko
  • Date: 2011-05-30 02:54:31 UTC
  • mfrom: (353.1.1 nux)
  • Revision ID: jay.taoko@canonical.com-20110530025431-kpqcnbcq3apsfz92
* Object::Dispose() now does the same thing as Object::UnReference()
* Fixed memory leak in UXTheme::Load2DTextureFile
* Mesh Resource manager
    - Fixed mesh Resource manager pipeline
    - See example ProgObjMeshLoader

* Fixed GLSL Shaders in FontRendering.cpp
    - removed global variable USE_ARB_SHADERS and replaced with GraphicsEngine::UsingGLSLCodePath()

* Removing files IniFile.cpp/.h
* Removing files UIColorTheme.cpp/.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
  void EditTextBox::ScrollTimerInterrupt (void *v)
89
89
  {
90
90
    Geometry base = GetGeometry();
91
 
    IEvent &ievent = GetThreadGLWindow()->GetCurrentEvent();
 
91
    IEvent &ievent = GetGraphicsDisplay()->GetCurrentEvent();
92
92
 
93
93
    int X = ievent.e_x;
94
94
    m_KeyboardHandler.CaretAutoScroll (ievent.e_x, ievent.e_y, base);