TextRenderer_fonts.h 745 B

123456789101112131415161718192021222324252627
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2014 Wenzel Jacob <wenzel@inf.ethz.ch>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef IGL_TEXT_RENDERER_FONTS_H
  9. #define IGL_TEXT_RENDERER_FONTS_H
  10. #include <stdint.h>
  11. extern uint8_t igl_entypo_ttf[];
  12. extern uint32_t igl_entypo_ttf_size;
  13. extern uint8_t igl_roboto_bold_ttf[];
  14. extern uint32_t igl_roboto_bold_ttf_size;
  15. extern uint8_t igl_roboto_regular_ttf[];
  16. extern uint32_t igl_roboto_regular_ttf_size;
  17. #ifndef IGL_STATIC_LIBRARY
  18. # include "TextRenderer_fonts.cpp"
  19. #endif
  20. #endif