/ftgles/test/FTTextureGlyph-Test.cpp

http://github.com/cdave1/ftgles · C++ · 119 lines · 84 code · 35 blank · 0 comment · 4 complexity · ea654ec4b14aaa277879b1ce00b37f24 MD5 · raw file

  1. #include <cppunit/extensions/HelperMacros.h>
  2. #include <cppunit/TestCaller.h>
  3. #include <cppunit/TestCase.h>
  4. #include <cppunit/TestSuite.h>
  5. #include <assert.h>
  6. #include "Fontdefs.h"
  7. #include "FTGL/ftgl.h"
  8. #include "FTInternals.h"
  9. extern void buildGLContext();
  10. class FTTextureGlyphTest : public CppUnit::TestCase
  11. {
  12. CPPUNIT_TEST_SUITE(FTTextureGlyphTest);
  13. CPPUNIT_TEST(testConstructor);
  14. CPPUNIT_TEST(testRender);
  15. CPPUNIT_TEST_SUITE_END();
  16. public:
  17. FTTextureGlyphTest() : CppUnit::TestCase("FTTextureGlyph Test")
  18. {
  19. }
  20. FTTextureGlyphTest(const std::string& name) : CppUnit::TestCase(name) {}
  21. ~FTTextureGlyphTest()
  22. {
  23. }
  24. void testConstructor()
  25. {
  26. setUpFreetype();
  27. buildGLContext();
  28. GLuint textureID;
  29. glGenTextures(1, &textureID);
  30. char* texture[64*64];
  31. glBindTexture(GL_TEXTURE_2D, textureID);
  32. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
  33. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
  34. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
  35. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
  36. glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 64, 64, 0, GL_ALPHA, GL_UNSIGNED_BYTE, texture);
  37. FTTextureGlyph* textureGlyph = new FTTextureGlyph(face->glyph, textureID, 0, 0, 64, 64);
  38. CPPUNIT_ASSERT(textureGlyph->Error() == 0);
  39. CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR);
  40. tearDownFreetype();
  41. }
  42. void testRender()
  43. {
  44. setUpFreetype();
  45. buildGLContext();
  46. GLuint textureID;
  47. glGenTextures(1, &textureID);
  48. char* texture[64*64];
  49. glBindTexture(GL_TEXTURE_2D, textureID);
  50. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
  51. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
  52. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
  53. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
  54. glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 64, 64, 0, GL_ALPHA, GL_UNSIGNED_BYTE, texture);
  55. FTTextureGlyph* textureGlyph = new FTTextureGlyph(face->glyph, textureID, 0, 0, 64, 64);
  56. textureGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT);
  57. CPPUNIT_ASSERT(textureGlyph->Error() == 0);
  58. CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR);
  59. tearDownFreetype();
  60. }
  61. void setUp()
  62. {}
  63. void tearDown()
  64. {}
  65. private:
  66. FT_Library library;
  67. FT_Face face;
  68. void setUpFreetype()
  69. {
  70. FT_Error error = FT_Init_FreeType(&library);
  71. assert(!error);
  72. error = FT_New_Face(library, FONT_FILE, 0, &face);
  73. assert(!error);
  74. FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION);
  75. error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT);
  76. assert(!error);
  77. }
  78. void tearDownFreetype()
  79. {
  80. FT_Done_Face(face);
  81. FT_Done_FreeType(library);
  82. }
  83. };
  84. CPPUNIT_TEST_SUITE_REGISTRATION(FTTextureGlyphTest);