helloworld.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright 2011-2016 Branimir Karadzic. All rights reserved.
  3. * License: http://www.opensource.org/licenses/BSD-2-Clause
  4. */
  5. #include <bgfx/c99/bgfx.h>
  6. #include "../00-helloworld/logo.h"
  7. extern bool entry_process_events(uint32_t* _width, uint32_t* _height, uint32_t* _debug, uint32_t* _reset);
  8. uint16_t uint16_max(uint16_t _a, uint16_t _b)
  9. {
  10. return _a < _b ? _b : _a;
  11. }
  12. int32_t _main_(int32_t _argc, char** _argv)
  13. {
  14. uint32_t width = 1280;
  15. uint32_t height = 720;
  16. uint32_t debug = BGFX_DEBUG_TEXT;
  17. uint32_t reset = BGFX_RESET_VSYNC;
  18. (void)_argc;
  19. (void)_argv;
  20. bgfx_init_t init;
  21. bgfx_init_ctor(&init);
  22. bgfx_init(&init);
  23. bgfx_reset(width, height, reset);
  24. // Enable debug text.
  25. bgfx_set_debug(debug);
  26. bgfx_set_view_clear(0
  27. , BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH
  28. , 0x303030ff
  29. , 1.0f
  30. , 0
  31. );
  32. while (!entry_process_events(&width, &height, &debug, &reset) )
  33. {
  34. // Set view 0 default viewport.
  35. bgfx_set_view_rect(0, 0, 0, (uint16_t)width, (uint16_t)height);
  36. // This dummy draw call is here to make sure that view 0 is cleared
  37. // if no other draw calls are submitted to view 0.
  38. bgfx_touch(0);
  39. // Use debug font to print information about this example.
  40. bgfx_dbg_text_clear(0, false);
  41. bgfx_dbg_text_image(
  42. uint16_max( (uint16_t)width /2/8, 20)-20
  43. , uint16_max( (uint16_t)height/2/16, 6)-6
  44. , 40
  45. , 12
  46. , s_logo
  47. , 160
  48. );
  49. bgfx_dbg_text_printf(0, 1, 0x4f, "bgfx/examples/25-c99");
  50. bgfx_dbg_text_printf(0, 2, 0x6f, "Description: Initialization and debug text with C99 API.");
  51. // Advance to next frame. Rendering thread will be kicked to
  52. // process submitted rendering primitives.
  53. bgfx_frame(false);
  54. }
  55. // Shutdown bgfx.
  56. bgfx_shutdown();
  57. return 0;
  58. }