~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxGraphics/FontTexture.h

  • Committer: Jay Taoko
  • Date: 2011-10-21 23:49:15 UTC
  • mfrom: (508.1.2 nux-20)
  • Revision ID: jay.taoko@canonical.com-20111021234915-hnzakb5ndebica8i
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
    //          The return value can be tested with the SUCCEEDED and FAILED macros.
236
236
    bool XToCursorPosition(const NString &Str,
237
237
                            int iX,
238
 
                            t_u32 FirstVisibleCharIndex,
 
238
                            unsigned int FirstVisibleCharIndex,
239
239
                            int *piCh,
240
240
                            int *piTrailing);
241
241
 
248
248
  private:
249
249
    INT _RefCount;
250
250
    INT _textureBMF;
251
 
    std::vector<t_u32> m_gl_texture_id;
 
251
    std::vector<unsigned int> m_gl_texture_id;
252
252
    Charset m_Charset;
253
253
 
254
254
    friend class FontRenderer;