ruby_rpg 0.0.4 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (564) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -0
  3. data/bin/build.bash +1 -1
  4. data/bin/import +11 -1
  5. data/ext/gl_native/extconf.rb +20 -0
  6. data/ext/gl_native/gl_native.c +563 -0
  7. data/ext/glfw_native/extconf.rb +18 -0
  8. data/ext/glfw_native/glfw_native.c +451 -0
  9. data/lib/engine/assets/_imported/cube.index_data +36 -0
  10. data/lib/engine/assets/_imported/cube.vertex_data +720 -0
  11. data/lib/engine/assets/_imported/plane.index_data +6 -0
  12. data/lib/engine/assets/_imported/plane.vertex_data +120 -0
  13. data/lib/engine/assets/_imported/sphere.index_data +2880 -0
  14. data/lib/engine/assets/_imported/sphere.vertex_data +57600 -0
  15. data/lib/engine/assets/cube.obj +46 -0
  16. data/lib/engine/assets/plane.obj +16 -0
  17. data/lib/engine/assets/sphere.obj +2488 -0
  18. data/lib/engine/component.rb +2 -0
  19. data/lib/engine/components/audio_source.rb +6 -4
  20. data/lib/engine/components/direction_light.rb +83 -4
  21. data/lib/engine/components/orthographic_camera.rb +31 -25
  22. data/lib/engine/components/perspective_camera.rb +35 -12
  23. data/lib/engine/components/point_light.rb +61 -5
  24. data/lib/engine/components/renderers/font_renderer.rb +19 -0
  25. data/lib/engine/components/renderers/font_renderer_base.rb +134 -0
  26. data/lib/engine/components/renderers/mesh_renderer.rb +41 -0
  27. data/lib/engine/components/renderers/sprite_renderer.rb +46 -0
  28. data/lib/engine/components/spot_light.rb +90 -0
  29. data/lib/engine/components/sprite_animator.rb +42 -0
  30. data/lib/engine/components/ui/flex/layout.rb +94 -0
  31. data/lib/engine/components/ui/flex/pack_layout.rb +65 -0
  32. data/lib/engine/components/ui/flex/stretch_layout.rb +52 -0
  33. data/lib/engine/components/ui/flex.rb +60 -0
  34. data/lib/engine/components/ui/font_renderer.rb +57 -0
  35. data/lib/engine/components/ui/rect.rb +117 -0
  36. data/lib/engine/components/ui/sprite_clickbox.rb +47 -0
  37. data/lib/engine/components/ui/sprite_renderer.rb +117 -0
  38. data/lib/engine/compute_shader.rb +14 -0
  39. data/lib/engine/compute_texture.rb +13 -0
  40. data/lib/engine/debugging.rb +4 -4
  41. data/lib/engine/engine.rb +8 -12
  42. data/lib/engine/font.rb +29 -4
  43. data/lib/engine/game_object.rb +121 -49
  44. data/lib/engine/gl.rb +439 -0
  45. data/lib/engine/glfw.rb +151 -0
  46. data/lib/engine/input.rb +115 -7
  47. data/lib/engine/material.rb +146 -11
  48. data/lib/engine/matrix_helpers.rb +38 -0
  49. data/lib/engine/mesh.rb +41 -16
  50. data/lib/engine/metal/compute_shader.rb +118 -0
  51. data/lib/engine/metal/compute_texture.rb +176 -0
  52. data/lib/engine/metal/device.rb +98 -0
  53. data/lib/engine/metal/metal_bindings.rb +126 -0
  54. data/lib/engine/opengl/compute_shader.rb +77 -0
  55. data/lib/engine/opengl/compute_texture.rb +31 -0
  56. data/lib/engine/physics/components/rigidbody.rb +23 -20
  57. data/lib/engine/physics/components/sphere_collider.rb +13 -3
  58. data/lib/engine/physics/physics_resolver.rb +24 -12
  59. data/lib/engine/rendering/cubemap_shadow_map_array.rb +77 -0
  60. data/lib/engine/rendering/gpu_timer.rb +68 -0
  61. data/lib/engine/rendering/instance_renderer.rb +140 -61
  62. data/lib/engine/rendering/post_processing/bloom_effect.rb +87 -0
  63. data/lib/engine/rendering/post_processing/depth_debug_effect.rb +17 -0
  64. data/lib/engine/rendering/post_processing/depth_of_field_effect.rb +52 -0
  65. data/lib/engine/rendering/post_processing/effect.rb +11 -0
  66. data/lib/engine/rendering/post_processing/post_processing_effect.rb +86 -0
  67. data/lib/engine/rendering/post_processing/single_pass_effect.rb +19 -0
  68. data/lib/engine/rendering/post_processing/ssao_effect.rb +182 -0
  69. data/lib/engine/rendering/post_processing/ssr_effect.rb +89 -0
  70. data/lib/engine/rendering/post_processing/tint_effect.rb +18 -0
  71. data/lib/engine/rendering/render_pipeline.rb +238 -6
  72. data/lib/engine/rendering/render_texture.rb +118 -0
  73. data/lib/engine/rendering/screen_quad.rb +64 -0
  74. data/lib/engine/rendering/shadow_map_array.rb +72 -0
  75. data/lib/engine/rendering/skybox_cubemap.rb +119 -0
  76. data/lib/engine/rendering/skybox_renderer.rb +64 -0
  77. data/lib/engine/rendering/ui/stencil_manager.rb +69 -0
  78. data/lib/engine/screenshoter.rb +1 -1
  79. data/lib/engine/serialization/graph_serializer.rb +74 -0
  80. data/lib/engine/serialization/object_serializer.rb +98 -0
  81. data/lib/engine/serialization/serializable.rb +78 -0
  82. data/lib/engine/serialization/yaml_persistence.rb +45 -0
  83. data/lib/engine/shader.rb +149 -25
  84. data/lib/engine/shaders/colour_frag.glsl +9 -1
  85. data/lib/engine/shaders/colour_vertex.glsl +12 -5
  86. data/lib/engine/shaders/fullscreen_frag.glsl +11 -0
  87. data/lib/engine/shaders/fullscreen_vertex.glsl +12 -0
  88. data/lib/engine/shaders/instanced_sprite_frag.glsl +21 -0
  89. data/lib/engine/shaders/{skybox_vert.glsl → instanced_sprite_vertex.glsl} +3 -2
  90. data/lib/engine/shaders/lighting/directional_light.glsl +49 -0
  91. data/lib/engine/shaders/lighting/lighting.glsl +33 -0
  92. data/lib/engine/shaders/lighting/lighting_common.glsl +13 -0
  93. data/lib/engine/shaders/lighting/point_light.glsl +46 -0
  94. data/lib/engine/shaders/lighting/spot_light.glsl +80 -0
  95. data/lib/engine/shaders/mesh_frag.glsl +28 -77
  96. data/lib/engine/shaders/mesh_vertex.glsl +5 -5
  97. data/lib/engine/shaders/point_shadow_frag.glsl +12 -0
  98. data/lib/engine/shaders/point_shadow_vertex.glsl +15 -0
  99. data/lib/engine/shaders/post_process/bloom_blur_frag.glsl +25 -0
  100. data/lib/engine/shaders/post_process/bloom_combine_frag.glsl +19 -0
  101. data/lib/engine/shaders/post_process/bloom_threshold_frag.glsl +19 -0
  102. data/lib/engine/shaders/post_process/debug_normals_frag.glsl +21 -0
  103. data/lib/engine/shaders/post_process/depth_debug_frag.glsl +17 -0
  104. data/lib/engine/shaders/post_process/dof_blur_frag.glsl +52 -0
  105. data/lib/engine/shaders/post_process/skybox_frag.glsl +29 -0
  106. data/lib/engine/shaders/post_process/ssao/blur_frag.glsl +50 -0
  107. data/lib/engine/shaders/post_process/ssao/combine_frag.glsl +15 -0
  108. data/lib/engine/shaders/post_process/ssao/frag.glsl +99 -0
  109. data/lib/engine/shaders/post_process/ssr/combine_frag.glsl +16 -0
  110. data/lib/engine/shaders/post_process/ssr/frag.glsl +118 -0
  111. data/lib/engine/shaders/post_process/tint_frag.glsl +14 -0
  112. data/lib/engine/shaders/shadow_frag.glsl +6 -0
  113. data/lib/engine/shaders/shadow_vertex.glsl +11 -0
  114. data/lib/engine/shaders/skybox_cubemap_frag.glsl +46 -0
  115. data/lib/engine/shaders/vertex_lit_frag.glsl +10 -66
  116. data/lib/engine/shaders/vertex_lit_vertex.glsl +1 -1
  117. data/lib/engine/standard_meshes/quad_mesh.rb +26 -0
  118. data/lib/engine/standard_objects/cube.rb +23 -0
  119. data/lib/engine/standard_objects/default_material.rb +20 -0
  120. data/lib/engine/standard_objects/plane.rb +23 -0
  121. data/lib/engine/standard_objects/sphere.rb +23 -0
  122. data/lib/engine/texture.rb +28 -19
  123. data/lib/engine/ui/rect.rb +16 -0
  124. data/lib/engine/window.rb +2 -2
  125. data/lib/ruby_rpg.rb +69 -9
  126. data/vendor/glew-2.2.0-win32/LICENSE.txt +73 -0
  127. data/vendor/glew-2.2.0-win32/bin/Release/x64/glew32.dll +0 -0
  128. data/vendor/glew-2.2.0-win32/include/GL/glew.h +26427 -0
  129. data/vendor/glew-2.2.0-win32/lib/Release/x64/glew32.lib +0 -0
  130. metadata +124 -466
  131. data/glfw-3.3.9.bin.MACOS/README.md +0 -5
  132. data/glfw-3.3.9.bin.MACOS/docs/html/bc_s.png +0 -0
  133. data/glfw-3.3.9.bin.MACOS/docs/html/bc_sd.png +0 -0
  134. data/glfw-3.3.9.bin.MACOS/docs/html/build_8dox.html +0 -81
  135. data/glfw-3.3.9.bin.MACOS/docs/html/build_guide.html +0 -199
  136. data/glfw-3.3.9.bin.MACOS/docs/html/closed.png +0 -0
  137. data/glfw-3.3.9.bin.MACOS/docs/html/compat_8dox.html +0 -81
  138. data/glfw-3.3.9.bin.MACOS/docs/html/compat_guide.html +0 -153
  139. data/glfw-3.3.9.bin.MACOS/docs/html/compile_8dox.html +0 -81
  140. data/glfw-3.3.9.bin.MACOS/docs/html/compile_guide.html +0 -223
  141. data/glfw-3.3.9.bin.MACOS/docs/html/context_8dox.html +0 -81
  142. data/glfw-3.3.9.bin.MACOS/docs/html/context_guide.html +0 -259
  143. data/glfw-3.3.9.bin.MACOS/docs/html/deprecated.html +0 -88
  144. data/glfw-3.3.9.bin.MACOS/docs/html/dir_08423ce7729c4554356a7de7171ba263.html +0 -85
  145. data/glfw-3.3.9.bin.MACOS/docs/html/dir_2dcebcdf14b42e92a6ed85c61bda6b9d.html +0 -93
  146. data/glfw-3.3.9.bin.MACOS/docs/html/dir_62ce056722ee97c199075aa1d6eca309.html +0 -95
  147. data/glfw-3.3.9.bin.MACOS/docs/html/dir_dddf4cf62655095a666cf715de3a31a2.html +0 -91
  148. data/glfw-3.3.9.bin.MACOS/docs/html/doc.svg +0 -12
  149. data/glfw-3.3.9.bin.MACOS/docs/html/docd.svg +0 -12
  150. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.css +0 -1685
  151. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.svg +0 -28
  152. data/glfw-3.3.9.bin.MACOS/docs/html/dynsections.js +0 -192
  153. data/glfw-3.3.9.bin.MACOS/docs/html/extra.css +0 -1
  154. data/glfw-3.3.9.bin.MACOS/docs/html/files.html +0 -91
  155. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosed.svg +0 -11
  156. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosedd.svg +0 -11
  157. data/glfw-3.3.9.bin.MACOS/docs/html/folderopen.svg +0 -17
  158. data/glfw-3.3.9.bin.MACOS/docs/html/folderopend.svg +0 -12
  159. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h.html +0 -1661
  160. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h_source.html +0 -1175
  161. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h.html +0 -167
  162. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h_source.html +0 -303
  163. data/glfw-3.3.9.bin.MACOS/docs/html/group__buttons.html +0 -282
  164. data/glfw-3.3.9.bin.MACOS/docs/html/group__context.html +0 -304
  165. data/glfw-3.3.9.bin.MACOS/docs/html/group__errors.html +0 -304
  166. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__axes.html +0 -202
  167. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__buttons.html +0 -410
  168. data/glfw-3.3.9.bin.MACOS/docs/html/group__hat__state.html +0 -234
  169. data/glfw-3.3.9.bin.MACOS/docs/html/group__init.html +0 -570
  170. data/glfw-3.3.9.bin.MACOS/docs/html/group__input.html +0 -2255
  171. data/glfw-3.3.9.bin.MACOS/docs/html/group__joysticks.html +0 -362
  172. data/glfw-3.3.9.bin.MACOS/docs/html/group__keys.html +0 -2034
  173. data/glfw-3.3.9.bin.MACOS/docs/html/group__mods.html +0 -198
  174. data/glfw-3.3.9.bin.MACOS/docs/html/group__monitor.html +0 -848
  175. data/glfw-3.3.9.bin.MACOS/docs/html/group__native.html +0 -812
  176. data/glfw-3.3.9.bin.MACOS/docs/html/group__shapes.html +0 -198
  177. data/glfw-3.3.9.bin.MACOS/docs/html/group__vulkan.html +0 -359
  178. data/glfw-3.3.9.bin.MACOS/docs/html/group__window.html +0 -3434
  179. data/glfw-3.3.9.bin.MACOS/docs/html/index.html +0 -100
  180. data/glfw-3.3.9.bin.MACOS/docs/html/input_8dox.html +0 -81
  181. data/glfw-3.3.9.bin.MACOS/docs/html/input_guide.html +0 -570
  182. data/glfw-3.3.9.bin.MACOS/docs/html/internal_8dox.html +0 -81
  183. data/glfw-3.3.9.bin.MACOS/docs/html/internals_guide.html +0 -132
  184. data/glfw-3.3.9.bin.MACOS/docs/html/intro_8dox.html +0 -81
  185. data/glfw-3.3.9.bin.MACOS/docs/html/intro_guide.html +0 -351
  186. data/glfw-3.3.9.bin.MACOS/docs/html/jquery.js +0 -34
  187. data/glfw-3.3.9.bin.MACOS/docs/html/main_8dox.html +0 -81
  188. data/glfw-3.3.9.bin.MACOS/docs/html/menu.js +0 -136
  189. data/glfw-3.3.9.bin.MACOS/docs/html/menudata.js +0 -29
  190. data/glfw-3.3.9.bin.MACOS/docs/html/minus.svg +0 -8
  191. data/glfw-3.3.9.bin.MACOS/docs/html/minusd.svg +0 -8
  192. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_8dox.html +0 -81
  193. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_guide.html +0 -229
  194. data/glfw-3.3.9.bin.MACOS/docs/html/moving_8dox.html +0 -81
  195. data/glfw-3.3.9.bin.MACOS/docs/html/moving_guide.html +0 -374
  196. data/glfw-3.3.9.bin.MACOS/docs/html/nav_f.png +0 -0
  197. data/glfw-3.3.9.bin.MACOS/docs/html/nav_fd.png +0 -0
  198. data/glfw-3.3.9.bin.MACOS/docs/html/nav_g.png +0 -0
  199. data/glfw-3.3.9.bin.MACOS/docs/html/nav_h.png +0 -0
  200. data/glfw-3.3.9.bin.MACOS/docs/html/nav_hd.png +0 -0
  201. data/glfw-3.3.9.bin.MACOS/docs/html/news.html +0 -634
  202. data/glfw-3.3.9.bin.MACOS/docs/html/news_8dox.html +0 -81
  203. data/glfw-3.3.9.bin.MACOS/docs/html/open.png +0 -0
  204. data/glfw-3.3.9.bin.MACOS/docs/html/pages.html +0 -99
  205. data/glfw-3.3.9.bin.MACOS/docs/html/plus.svg +0 -9
  206. data/glfw-3.3.9.bin.MACOS/docs/html/plusd.svg +0 -9
  207. data/glfw-3.3.9.bin.MACOS/docs/html/quick_8dox.html +0 -81
  208. data/glfw-3.3.9.bin.MACOS/docs/html/quick_guide.html +0 -397
  209. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_0.js +0 -5
  210. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1.js +0 -4
  211. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_10.js +0 -65
  212. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_11.js +0 -26
  213. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_12.js +0 -44
  214. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_13.js +0 -34
  215. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_14.js +0 -12
  216. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_15.js +0 -52
  217. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_16.js +0 -69
  218. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_17.js +0 -51
  219. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_18.js +0 -14
  220. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_19.js +0 -36
  221. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1a.js +0 -98
  222. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1b.js +0 -12
  223. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_2.js +0 -6
  224. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_3.js +0 -9
  225. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_4.js +0 -57
  226. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_5.js +0 -22
  227. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_6.js +0 -103
  228. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_7.js +0 -23
  229. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_8.js +0 -35
  230. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_9.js +0 -63
  231. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_a.js +0 -505
  232. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_b.js +0 -24
  233. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_c.js +0 -50
  234. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_d.js +0 -17
  235. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_e.js +0 -12
  236. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_f.js +0 -35
  237. data/glfw-3.3.9.bin.MACOS/docs/html/search/classes_0.js +0 -7
  238. data/glfw-3.3.9.bin.MACOS/docs/html/search/close.svg +0 -18
  239. data/glfw-3.3.9.bin.MACOS/docs/html/search/defines_0.js +0 -34
  240. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_0.js +0 -4
  241. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_1.js +0 -6
  242. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_2.js +0 -5
  243. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_3.js +0 -6
  244. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_4.js +0 -6
  245. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_5.js +0 -4
  246. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_6.js +0 -4
  247. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_7.js +0 -4
  248. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_8.js +0 -4
  249. data/glfw-3.3.9.bin.MACOS/docs/html/search/functions_0.js +0 -146
  250. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_0.js +0 -6
  251. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_1.js +0 -4
  252. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_10.js +0 -4
  253. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_2.js +0 -6
  254. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_3.js +0 -5
  255. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_4.js +0 -4
  256. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_5.js +0 -5
  257. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_6.js +0 -4
  258. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_7.js +0 -5
  259. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_8.js +0 -5
  260. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_9.js +0 -6
  261. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_a.js +0 -6
  262. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_b.js +0 -4
  263. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_c.js +0 -4
  264. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_d.js +0 -7
  265. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_e.js +0 -4
  266. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_f.js +0 -5
  267. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag.svg +0 -24
  268. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_d.svg +0 -24
  269. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_sel.svg +0 -31
  270. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_seld.svg +0 -31
  271. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_0.js +0 -4
  272. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_1.js +0 -4
  273. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_10.js +0 -4
  274. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_2.js +0 -5
  275. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_3.js +0 -4
  276. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_4.js +0 -6
  277. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_5.js +0 -4
  278. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_6.js +0 -4
  279. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_7.js +0 -7
  280. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_8.js +0 -6
  281. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_9.js +0 -4
  282. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_a.js +0 -5
  283. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_b.js +0 -5
  284. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_c.js +0 -4
  285. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_d.js +0 -6
  286. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_e.js +0 -6
  287. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_f.js +0 -4
  288. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.css +0 -291
  289. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.js +0 -840
  290. data/glfw-3.3.9.bin.MACOS/docs/html/search/searchdata.js +0 -39
  291. data/glfw-3.3.9.bin.MACOS/docs/html/search/typedefs_0.js +0 -32
  292. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_0.js +0 -4
  293. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_1.js +0 -6
  294. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_2.js +0 -5
  295. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_3.js +0 -4
  296. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_4.js +0 -4
  297. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_5.js +0 -6
  298. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_6.js +0 -4
  299. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_7.js +0 -4
  300. data/glfw-3.3.9.bin.MACOS/docs/html/spaces.svg +0 -877
  301. data/glfw-3.3.9.bin.MACOS/docs/html/splitbar.png +0 -0
  302. data/glfw-3.3.9.bin.MACOS/docs/html/splitbard.png +0 -0
  303. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  304. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  305. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wimage.html +0 -151
  306. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wvidmode.html +0 -204
  307. data/glfw-3.3.9.bin.MACOS/docs/html/sync_off.png +0 -0
  308. data/glfw-3.3.9.bin.MACOS/docs/html/sync_on.png +0 -0
  309. data/glfw-3.3.9.bin.MACOS/docs/html/tab_a.png +0 -0
  310. data/glfw-3.3.9.bin.MACOS/docs/html/tab_ad.png +0 -0
  311. data/glfw-3.3.9.bin.MACOS/docs/html/tab_b.png +0 -0
  312. data/glfw-3.3.9.bin.MACOS/docs/html/tab_bd.png +0 -0
  313. data/glfw-3.3.9.bin.MACOS/docs/html/tab_h.png +0 -0
  314. data/glfw-3.3.9.bin.MACOS/docs/html/tab_hd.png +0 -0
  315. data/glfw-3.3.9.bin.MACOS/docs/html/tab_s.png +0 -0
  316. data/glfw-3.3.9.bin.MACOS/docs/html/tab_sd.png +0 -0
  317. data/glfw-3.3.9.bin.MACOS/docs/html/tabs.css +0 -1
  318. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_8dox.html +0 -81
  319. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_guide.html +0 -196
  320. data/glfw-3.3.9.bin.MACOS/docs/html/window_8dox.html +0 -81
  321. data/glfw-3.3.9.bin.MACOS/docs/html/window_guide.html +0 -763
  322. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3.h +0 -5932
  323. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3native.h +0 -634
  324. data/glfw-3.3.9.bin.MACOS/lib-arm64/libglfw3.a +0 -0
  325. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw.3.dylib +0 -0
  326. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw3.a +0 -0
  327. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw.3.dylib +0 -0
  328. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw3.a +0 -0
  329. data/glfw-3.4.bin.WIN64/README.md +0 -70
  330. data/glfw-3.4.bin.WIN64/docs/html/bc_s.png +0 -0
  331. data/glfw-3.4.bin.WIN64/docs/html/bc_sd.png +0 -0
  332. data/glfw-3.4.bin.WIN64/docs/html/build_8md.html +0 -81
  333. data/glfw-3.4.bin.WIN64/docs/html/build_guide.html +0 -217
  334. data/glfw-3.4.bin.WIN64/docs/html/closed.png +0 -0
  335. data/glfw-3.4.bin.WIN64/docs/html/compat_8md.html +0 -81
  336. data/glfw-3.4.bin.WIN64/docs/html/compat_guide.html +0 -156
  337. data/glfw-3.4.bin.WIN64/docs/html/compile_8md.html +0 -81
  338. data/glfw-3.4.bin.WIN64/docs/html/compile_guide.html +0 -219
  339. data/glfw-3.4.bin.WIN64/docs/html/context_8md.html +0 -81
  340. data/glfw-3.4.bin.WIN64/docs/html/context_guide.html +0 -258
  341. data/glfw-3.4.bin.WIN64/docs/html/deprecated.html +0 -88
  342. data/glfw-3.4.bin.WIN64/docs/html/dir_13577e2d8b9423099662de029791bd7d.html +0 -93
  343. data/glfw-3.4.bin.WIN64/docs/html/dir_7f92719a7fe62e5b064f87d7a3c220b1.html +0 -95
  344. data/glfw-3.4.bin.WIN64/docs/html/dir_a788ef6c2b1e5b367804e0b6ccfd6f11.html +0 -85
  345. data/glfw-3.4.bin.WIN64/docs/html/dir_b11153cd0f4fd04a7564cc166f482635.html +0 -91
  346. data/glfw-3.4.bin.WIN64/docs/html/doc.svg +0 -12
  347. data/glfw-3.4.bin.WIN64/docs/html/docd.svg +0 -12
  348. data/glfw-3.4.bin.WIN64/docs/html/doxygen.css +0 -1685
  349. data/glfw-3.4.bin.WIN64/docs/html/doxygen.svg +0 -28
  350. data/glfw-3.4.bin.WIN64/docs/html/dynsections.js +0 -192
  351. data/glfw-3.4.bin.WIN64/docs/html/extra.css +0 -2
  352. data/glfw-3.4.bin.WIN64/docs/html/files.html +0 -91
  353. data/glfw-3.4.bin.WIN64/docs/html/folderclosed.svg +0 -11
  354. data/glfw-3.4.bin.WIN64/docs/html/folderclosedd.svg +0 -11
  355. data/glfw-3.4.bin.WIN64/docs/html/folderopen.svg +0 -17
  356. data/glfw-3.4.bin.WIN64/docs/html/folderopend.svg +0 -12
  357. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h.html +0 -1910
  358. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h_source.html +0 -1260
  359. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h.html +0 -170
  360. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h_source.html +0 -306
  361. data/glfw-3.4.bin.WIN64/docs/html/group__buttons.html +0 -282
  362. data/glfw-3.4.bin.WIN64/docs/html/group__context.html +0 -304
  363. data/glfw-3.4.bin.WIN64/docs/html/group__errors.html +0 -384
  364. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__axes.html +0 -202
  365. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__buttons.html +0 -410
  366. data/glfw-3.4.bin.WIN64/docs/html/group__hat__state.html +0 -234
  367. data/glfw-3.4.bin.WIN64/docs/html/group__init.html +0 -1015
  368. data/glfw-3.4.bin.WIN64/docs/html/group__input.html +0 -2285
  369. data/glfw-3.4.bin.WIN64/docs/html/group__joysticks.html +0 -362
  370. data/glfw-3.4.bin.WIN64/docs/html/group__keys.html +0 -2034
  371. data/glfw-3.4.bin.WIN64/docs/html/group__mods.html +0 -198
  372. data/glfw-3.4.bin.WIN64/docs/html/group__monitor.html +0 -849
  373. data/glfw-3.4.bin.WIN64/docs/html/group__native.html +0 -837
  374. data/glfw-3.4.bin.WIN64/docs/html/group__shapes.html +0 -337
  375. data/glfw-3.4.bin.WIN64/docs/html/group__vulkan.html +0 -361
  376. data/glfw-3.4.bin.WIN64/docs/html/group__window.html +0 -3608
  377. data/glfw-3.4.bin.WIN64/docs/html/index.html +0 -100
  378. data/glfw-3.4.bin.WIN64/docs/html/input_8md.html +0 -81
  379. data/glfw-3.4.bin.WIN64/docs/html/input_guide.html +0 -576
  380. data/glfw-3.4.bin.WIN64/docs/html/internal_8md.html +0 -81
  381. data/glfw-3.4.bin.WIN64/docs/html/internals_guide.html +0 -135
  382. data/glfw-3.4.bin.WIN64/docs/html/intro_8md.html +0 -81
  383. data/glfw-3.4.bin.WIN64/docs/html/intro_guide.html +0 -429
  384. data/glfw-3.4.bin.WIN64/docs/html/jquery.js +0 -34
  385. data/glfw-3.4.bin.WIN64/docs/html/main_8md.html +0 -81
  386. data/glfw-3.4.bin.WIN64/docs/html/menu.js +0 -136
  387. data/glfw-3.4.bin.WIN64/docs/html/menudata.js +0 -30
  388. data/glfw-3.4.bin.WIN64/docs/html/minus.svg +0 -8
  389. data/glfw-3.4.bin.WIN64/docs/html/minusd.svg +0 -8
  390. data/glfw-3.4.bin.WIN64/docs/html/monitor_8md.html +0 -81
  391. data/glfw-3.4.bin.WIN64/docs/html/monitor_guide.html +0 -228
  392. data/glfw-3.4.bin.WIN64/docs/html/moving_8md.html +0 -81
  393. data/glfw-3.4.bin.WIN64/docs/html/moving_guide.html +0 -360
  394. data/glfw-3.4.bin.WIN64/docs/html/nav_f.png +0 -0
  395. data/glfw-3.4.bin.WIN64/docs/html/nav_fd.png +0 -0
  396. data/glfw-3.4.bin.WIN64/docs/html/nav_g.png +0 -0
  397. data/glfw-3.4.bin.WIN64/docs/html/nav_h.png +0 -0
  398. data/glfw-3.4.bin.WIN64/docs/html/nav_hd.png +0 -0
  399. data/glfw-3.4.bin.WIN64/docs/html/news.html +0 -336
  400. data/glfw-3.4.bin.WIN64/docs/html/news_8md.html +0 -81
  401. data/glfw-3.4.bin.WIN64/docs/html/open.png +0 -0
  402. data/glfw-3.4.bin.WIN64/docs/html/pages.html +0 -99
  403. data/glfw-3.4.bin.WIN64/docs/html/plus.svg +0 -9
  404. data/glfw-3.4.bin.WIN64/docs/html/plusd.svg +0 -9
  405. data/glfw-3.4.bin.WIN64/docs/html/quick_8md.html +0 -81
  406. data/glfw-3.4.bin.WIN64/docs/html/quick_guide.html +0 -406
  407. data/glfw-3.4.bin.WIN64/docs/html/search/all_0.js +0 -4
  408. data/glfw-3.4.bin.WIN64/docs/html/search/all_1.js +0 -4
  409. data/glfw-3.4.bin.WIN64/docs/html/search/all_10.js +0 -13
  410. data/glfw-3.4.bin.WIN64/docs/html/search/all_11.js +0 -11
  411. data/glfw-3.4.bin.WIN64/docs/html/search/all_12.js +0 -26
  412. data/glfw-3.4.bin.WIN64/docs/html/search/all_13.js +0 -51
  413. data/glfw-3.4.bin.WIN64/docs/html/search/all_14.js +0 -22
  414. data/glfw-3.4.bin.WIN64/docs/html/search/all_15.js +0 -35
  415. data/glfw-3.4.bin.WIN64/docs/html/search/all_16.js +0 -29
  416. data/glfw-3.4.bin.WIN64/docs/html/search/all_17.js +0 -8
  417. data/glfw-3.4.bin.WIN64/docs/html/search/all_18.js +0 -44
  418. data/glfw-3.4.bin.WIN64/docs/html/search/all_19.js +0 -60
  419. data/glfw-3.4.bin.WIN64/docs/html/search/all_1a.js +0 -39
  420. data/glfw-3.4.bin.WIN64/docs/html/search/all_1b.js +0 -8
  421. data/glfw-3.4.bin.WIN64/docs/html/search/all_1c.js +0 -32
  422. data/glfw-3.4.bin.WIN64/docs/html/search/all_1d.js +0 -84
  423. data/glfw-3.4.bin.WIN64/docs/html/search/all_1e.js +0 -13
  424. data/glfw-3.4.bin.WIN64/docs/html/search/all_1f.js +0 -4
  425. data/glfw-3.4.bin.WIN64/docs/html/search/all_2.js +0 -5
  426. data/glfw-3.4.bin.WIN64/docs/html/search/all_3.js +0 -4
  427. data/glfw-3.4.bin.WIN64/docs/html/search/all_4.js +0 -4
  428. data/glfw-3.4.bin.WIN64/docs/html/search/all_5.js +0 -4
  429. data/glfw-3.4.bin.WIN64/docs/html/search/all_6.js +0 -4
  430. data/glfw-3.4.bin.WIN64/docs/html/search/all_7.js +0 -58
  431. data/glfw-3.4.bin.WIN64/docs/html/search/all_8.js +0 -21
  432. data/glfw-3.4.bin.WIN64/docs/html/search/all_9.js +0 -82
  433. data/glfw-3.4.bin.WIN64/docs/html/search/all_a.js +0 -20
  434. data/glfw-3.4.bin.WIN64/docs/html/search/all_b.js +0 -26
  435. data/glfw-3.4.bin.WIN64/docs/html/search/all_c.js +0 -35
  436. data/glfw-3.4.bin.WIN64/docs/html/search/all_d.js +0 -555
  437. data/glfw-3.4.bin.WIN64/docs/html/search/all_e.js +0 -23
  438. data/glfw-3.4.bin.WIN64/docs/html/search/all_f.js +0 -40
  439. data/glfw-3.4.bin.WIN64/docs/html/search/classes_0.js +0 -8
  440. data/glfw-3.4.bin.WIN64/docs/html/search/close.svg +0 -18
  441. data/glfw-3.4.bin.WIN64/docs/html/search/defines_0.js +0 -43
  442. data/glfw-3.4.bin.WIN64/docs/html/search/files_0.js +0 -4
  443. data/glfw-3.4.bin.WIN64/docs/html/search/files_1.js +0 -6
  444. data/glfw-3.4.bin.WIN64/docs/html/search/files_2.js +0 -5
  445. data/glfw-3.4.bin.WIN64/docs/html/search/files_3.js +0 -6
  446. data/glfw-3.4.bin.WIN64/docs/html/search/files_4.js +0 -6
  447. data/glfw-3.4.bin.WIN64/docs/html/search/files_5.js +0 -4
  448. data/glfw-3.4.bin.WIN64/docs/html/search/files_6.js +0 -4
  449. data/glfw-3.4.bin.WIN64/docs/html/search/files_7.js +0 -4
  450. data/glfw-3.4.bin.WIN64/docs/html/search/files_8.js +0 -4
  451. data/glfw-3.4.bin.WIN64/docs/html/search/functions_0.js +0 -152
  452. data/glfw-3.4.bin.WIN64/docs/html/search/groups_0.js +0 -6
  453. data/glfw-3.4.bin.WIN64/docs/html/search/groups_1.js +0 -4
  454. data/glfw-3.4.bin.WIN64/docs/html/search/groups_10.js +0 -4
  455. data/glfw-3.4.bin.WIN64/docs/html/search/groups_2.js +0 -6
  456. data/glfw-3.4.bin.WIN64/docs/html/search/groups_3.js +0 -5
  457. data/glfw-3.4.bin.WIN64/docs/html/search/groups_4.js +0 -4
  458. data/glfw-3.4.bin.WIN64/docs/html/search/groups_5.js +0 -5
  459. data/glfw-3.4.bin.WIN64/docs/html/search/groups_6.js +0 -4
  460. data/glfw-3.4.bin.WIN64/docs/html/search/groups_7.js +0 -5
  461. data/glfw-3.4.bin.WIN64/docs/html/search/groups_8.js +0 -5
  462. data/glfw-3.4.bin.WIN64/docs/html/search/groups_9.js +0 -6
  463. data/glfw-3.4.bin.WIN64/docs/html/search/groups_a.js +0 -6
  464. data/glfw-3.4.bin.WIN64/docs/html/search/groups_b.js +0 -4
  465. data/glfw-3.4.bin.WIN64/docs/html/search/groups_c.js +0 -4
  466. data/glfw-3.4.bin.WIN64/docs/html/search/groups_d.js +0 -7
  467. data/glfw-3.4.bin.WIN64/docs/html/search/groups_e.js +0 -4
  468. data/glfw-3.4.bin.WIN64/docs/html/search/groups_f.js +0 -5
  469. data/glfw-3.4.bin.WIN64/docs/html/search/mag.svg +0 -24
  470. data/glfw-3.4.bin.WIN64/docs/html/search/mag_d.svg +0 -24
  471. data/glfw-3.4.bin.WIN64/docs/html/search/mag_sel.svg +0 -31
  472. data/glfw-3.4.bin.WIN64/docs/html/search/mag_seld.svg +0 -31
  473. data/glfw-3.4.bin.WIN64/docs/html/search/pages_0.js +0 -4
  474. data/glfw-3.4.bin.WIN64/docs/html/search/pages_1.js +0 -5
  475. data/glfw-3.4.bin.WIN64/docs/html/search/pages_10.js +0 -5
  476. data/glfw-3.4.bin.WIN64/docs/html/search/pages_11.js +0 -4
  477. data/glfw-3.4.bin.WIN64/docs/html/search/pages_2.js +0 -4
  478. data/glfw-3.4.bin.WIN64/docs/html/search/pages_3.js +0 -5
  479. data/glfw-3.4.bin.WIN64/docs/html/search/pages_4.js +0 -4
  480. data/glfw-3.4.bin.WIN64/docs/html/search/pages_5.js +0 -6
  481. data/glfw-3.4.bin.WIN64/docs/html/search/pages_6.js +0 -4
  482. data/glfw-3.4.bin.WIN64/docs/html/search/pages_7.js +0 -5
  483. data/glfw-3.4.bin.WIN64/docs/html/search/pages_8.js +0 -7
  484. data/glfw-3.4.bin.WIN64/docs/html/search/pages_9.js +0 -7
  485. data/glfw-3.4.bin.WIN64/docs/html/search/pages_a.js +0 -4
  486. data/glfw-3.4.bin.WIN64/docs/html/search/pages_b.js +0 -5
  487. data/glfw-3.4.bin.WIN64/docs/html/search/pages_c.js +0 -4
  488. data/glfw-3.4.bin.WIN64/docs/html/search/pages_d.js +0 -4
  489. data/glfw-3.4.bin.WIN64/docs/html/search/pages_e.js +0 -6
  490. data/glfw-3.4.bin.WIN64/docs/html/search/pages_f.js +0 -6
  491. data/glfw-3.4.bin.WIN64/docs/html/search/search.css +0 -291
  492. data/glfw-3.4.bin.WIN64/docs/html/search/search.js +0 -840
  493. data/glfw-3.4.bin.WIN64/docs/html/search/searchdata.js +0 -39
  494. data/glfw-3.4.bin.WIN64/docs/html/search/typedefs_0.js +0 -36
  495. data/glfw-3.4.bin.WIN64/docs/html/search/variables_0.js +0 -5
  496. data/glfw-3.4.bin.WIN64/docs/html/search/variables_1.js +0 -6
  497. data/glfw-3.4.bin.WIN64/docs/html/search/variables_2.js +0 -4
  498. data/glfw-3.4.bin.WIN64/docs/html/search/variables_3.js +0 -5
  499. data/glfw-3.4.bin.WIN64/docs/html/search/variables_4.js +0 -4
  500. data/glfw-3.4.bin.WIN64/docs/html/search/variables_5.js +0 -4
  501. data/glfw-3.4.bin.WIN64/docs/html/search/variables_6.js +0 -7
  502. data/glfw-3.4.bin.WIN64/docs/html/search/variables_7.js +0 -4
  503. data/glfw-3.4.bin.WIN64/docs/html/search/variables_8.js +0 -4
  504. data/glfw-3.4.bin.WIN64/docs/html/search/variables_9.js +0 -4
  505. data/glfw-3.4.bin.WIN64/docs/html/spaces.svg +0 -877
  506. data/glfw-3.4.bin.WIN64/docs/html/splitbar.png +0 -0
  507. data/glfw-3.4.bin.WIN64/docs/html/splitbard.png +0 -0
  508. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wallocator.html +0 -168
  509. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  510. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  511. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wimage.html +0 -151
  512. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wvidmode.html +0 -204
  513. data/glfw-3.4.bin.WIN64/docs/html/sync_off.png +0 -0
  514. data/glfw-3.4.bin.WIN64/docs/html/sync_on.png +0 -0
  515. data/glfw-3.4.bin.WIN64/docs/html/tab_a.png +0 -0
  516. data/glfw-3.4.bin.WIN64/docs/html/tab_ad.png +0 -0
  517. data/glfw-3.4.bin.WIN64/docs/html/tab_b.png +0 -0
  518. data/glfw-3.4.bin.WIN64/docs/html/tab_bd.png +0 -0
  519. data/glfw-3.4.bin.WIN64/docs/html/tab_h.png +0 -0
  520. data/glfw-3.4.bin.WIN64/docs/html/tab_hd.png +0 -0
  521. data/glfw-3.4.bin.WIN64/docs/html/tab_s.png +0 -0
  522. data/glfw-3.4.bin.WIN64/docs/html/tab_sd.png +0 -0
  523. data/glfw-3.4.bin.WIN64/docs/html/tabs.css +0 -1
  524. data/glfw-3.4.bin.WIN64/docs/html/topics.html +0 -101
  525. data/glfw-3.4.bin.WIN64/docs/html/vulkan_8md.html +0 -81
  526. data/glfw-3.4.bin.WIN64/docs/html/vulkan_guide.html +0 -206
  527. data/glfw-3.4.bin.WIN64/docs/html/window_8md.html +0 -81
  528. data/glfw-3.4.bin.WIN64/docs/html/window_guide.html +0 -806
  529. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3.h +0 -6547
  530. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3native.h +0 -663
  531. data/glfw-3.4.bin.WIN64/lib-mingw-w64/glfw3.dll +0 -0
  532. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3.a +0 -0
  533. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3dll.a +0 -0
  534. data/glfw-3.4.bin.WIN64/lib-static-ucrt/glfw3dll.lib +0 -0
  535. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.dll +0 -0
  536. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.lib +0 -0
  537. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3_mt.lib +0 -0
  538. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3dll.lib +0 -0
  539. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.dll +0 -0
  540. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.lib +0 -0
  541. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3_mt.lib +0 -0
  542. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3dll.lib +0 -0
  543. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.dll +0 -0
  544. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.lib +0 -0
  545. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3_mt.lib +0 -0
  546. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3dll.lib +0 -0
  547. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.dll +0 -0
  548. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.lib +0 -0
  549. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3_mt.lib +0 -0
  550. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3dll.lib +0 -0
  551. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.dll +0 -0
  552. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.lib +0 -0
  553. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3_mt.lib +0 -0
  554. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3dll.lib +0 -0
  555. data/lib/engine/components/font_renderer.rb +0 -134
  556. data/lib/engine/components/mesh_renderer.rb +0 -31
  557. data/lib/engine/components/sprite_renderer.rb +0 -141
  558. data/lib/engine/components/ui_font_renderer.rb +0 -140
  559. data/lib/engine/components/ui_sprite_renderer.rb +0 -101
  560. data/lib/engine/shaders/skybox_frag.glsl +0 -12
  561. /data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.3.9.bin.MACOS}/LICENSE.md +0 -0
  562. /data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.3.9.bin.MACOS}/lib-arm64/libglfw.3.dylib +0 -0
  563. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.4.bin.WIN64}/LICENSE.md +0 -0
  564. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.4.bin.WIN64}/lib-static-ucrt/glfw3.dll +0 -0
@@ -1,1685 +0,0 @@
1
- /* The standard CSS for doxygen 1.9.8*/
2
-
3
- body {
4
- background-color: white;
5
- color: black;
6
- }
7
-
8
- body, table, div, p, dl {
9
- font-weight: 400;
10
- font-size: 14px;
11
- font-family: Roboto,sans-serif;
12
- line-height: 22px;
13
- }
14
-
15
- /* @group Heading Levels */
16
-
17
- .title {
18
- font-weight: 400;
19
- font-size: 14px;
20
- font-family: Roboto,sans-serif;
21
- line-height: 28px;
22
- font-size: 150%;
23
- font-weight: bold;
24
- margin: 10px 2px;
25
- }
26
-
27
- h1.groupheader {
28
- font-size: 150%;
29
- }
30
-
31
- h2.groupheader {
32
- border-bottom: 1px solid #879ECB;
33
- color: #354C7B;
34
- font-size: 150%;
35
- font-weight: normal;
36
- margin-top: 1.75em;
37
- padding-top: 8px;
38
- padding-bottom: 4px;
39
- width: 100%;
40
- }
41
-
42
- h3.groupheader {
43
- font-size: 100%;
44
- }
45
-
46
- h1, h2, h3, h4, h5, h6 {
47
- -webkit-transition: text-shadow 0.5s linear;
48
- -moz-transition: text-shadow 0.5s linear;
49
- -ms-transition: text-shadow 0.5s linear;
50
- -o-transition: text-shadow 0.5s linear;
51
- transition: text-shadow 0.5s linear;
52
- margin-right: 15px;
53
- }
54
-
55
- h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
56
- text-shadow: 0 0 15px cyan;
57
- }
58
-
59
- dt {
60
- font-weight: bold;
61
- }
62
-
63
- p.startli, p.startdd {
64
- margin-top: 2px;
65
- }
66
-
67
- th p.starttd, th p.intertd, th p.endtd {
68
- font-size: 100%;
69
- font-weight: 700;
70
- }
71
-
72
- p.starttd {
73
- margin-top: 0px;
74
- }
75
-
76
- p.endli {
77
- margin-bottom: 0px;
78
- }
79
-
80
- p.enddd {
81
- margin-bottom: 4px;
82
- }
83
-
84
- p.endtd {
85
- margin-bottom: 2px;
86
- }
87
-
88
- p.interli {
89
- }
90
-
91
- p.interdd {
92
- }
93
-
94
- p.intertd {
95
- }
96
-
97
- /* @end */
98
-
99
- caption {
100
- font-weight: bold;
101
- }
102
-
103
- span.legend {
104
- font-size: 70%;
105
- text-align: center;
106
- }
107
-
108
- h3.version {
109
- font-size: 90%;
110
- text-align: center;
111
- }
112
-
113
- div.navtab {
114
- padding-right: 15px;
115
- text-align: right;
116
- line-height: 110%;
117
- }
118
-
119
- div.navtab table {
120
- border-spacing: 0;
121
- }
122
-
123
- td.navtab {
124
- padding-right: 6px;
125
- padding-left: 6px;
126
- }
127
-
128
- td.navtabHL {
129
- background-image: url('tab_a.png');
130
- background-repeat:repeat-x;
131
- padding-right: 6px;
132
- padding-left: 6px;
133
- }
134
-
135
- td.navtabHL a, td.navtabHL a:visited {
136
- color: white;
137
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
138
- }
139
-
140
- a.navtab {
141
- font-weight: bold;
142
- }
143
-
144
- div.qindex{
145
- text-align: center;
146
- width: 100%;
147
- line-height: 140%;
148
- font-size: 130%;
149
- color: #A0A0A0;
150
- }
151
-
152
- #main-menu a:focus {
153
- outline: auto;
154
- z-index: 10;
155
- position: relative;
156
- }
157
-
158
- dt.alphachar{
159
- font-size: 180%;
160
- font-weight: bold;
161
- }
162
-
163
- .alphachar a{
164
- color: black;
165
- }
166
-
167
- .alphachar a:hover, .alphachar a:visited{
168
- text-decoration: none;
169
- }
170
-
171
- .classindex dl {
172
- padding: 25px;
173
- column-count:1
174
- }
175
-
176
- .classindex dd {
177
- display:inline-block;
178
- margin-left: 50px;
179
- width: 90%;
180
- line-height: 1.15em;
181
- }
182
-
183
- .classindex dl.even {
184
- background-color: white;
185
- }
186
-
187
- .classindex dl.odd {
188
- background-color: #F8F9FC;
189
- }
190
-
191
- @media(min-width: 1120px) {
192
- .classindex dl {
193
- column-count:2
194
- }
195
- }
196
-
197
- @media(min-width: 1320px) {
198
- .classindex dl {
199
- column-count:3
200
- }
201
- }
202
-
203
-
204
- /* @group Link Styling */
205
-
206
- a {
207
- color: #3D578C;
208
- font-weight: normal;
209
- text-decoration: none;
210
- }
211
-
212
- .contents a:visited {
213
- color: #4665A2;
214
- }
215
-
216
- a:hover {
217
- text-decoration: underline;
218
- }
219
-
220
- a.el {
221
- font-weight: bold;
222
- }
223
-
224
- a.elRef {
225
- }
226
-
227
- a.code, a.code:visited, a.line, a.line:visited {
228
- color: #4665A2;
229
- }
230
-
231
- a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
232
- color: #4665A2;
233
- }
234
-
235
- a.code.hl_class { /* style for links to class names in code snippets */ }
236
- a.code.hl_struct { /* style for links to struct names in code snippets */ }
237
- a.code.hl_union { /* style for links to union names in code snippets */ }
238
- a.code.hl_interface { /* style for links to interface names in code snippets */ }
239
- a.code.hl_protocol { /* style for links to protocol names in code snippets */ }
240
- a.code.hl_category { /* style for links to category names in code snippets */ }
241
- a.code.hl_exception { /* style for links to exception names in code snippets */ }
242
- a.code.hl_service { /* style for links to service names in code snippets */ }
243
- a.code.hl_singleton { /* style for links to singleton names in code snippets */ }
244
- a.code.hl_concept { /* style for links to concept names in code snippets */ }
245
- a.code.hl_namespace { /* style for links to namespace names in code snippets */ }
246
- a.code.hl_package { /* style for links to package names in code snippets */ }
247
- a.code.hl_define { /* style for links to macro names in code snippets */ }
248
- a.code.hl_function { /* style for links to function names in code snippets */ }
249
- a.code.hl_variable { /* style for links to variable names in code snippets */ }
250
- a.code.hl_typedef { /* style for links to typedef names in code snippets */ }
251
- a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ }
252
- a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ }
253
- a.code.hl_signal { /* style for links to Qt signal names in code snippets */ }
254
- a.code.hl_slot { /* style for links to Qt slot names in code snippets */ }
255
- a.code.hl_friend { /* style for links to friend names in code snippets */ }
256
- a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ }
257
- a.code.hl_property { /* style for links to property names in code snippets */ }
258
- a.code.hl_event { /* style for links to event names in code snippets */ }
259
- a.code.hl_sequence { /* style for links to sequence names in code snippets */ }
260
- a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ }
261
-
262
- /* @end */
263
-
264
- dl.el {
265
- margin-left: -1cm;
266
- }
267
-
268
- ul {
269
- overflow: visible;
270
- }
271
-
272
- ul.multicol {
273
- -moz-column-gap: 1em;
274
- -webkit-column-gap: 1em;
275
- column-gap: 1em;
276
- -moz-column-count: 3;
277
- -webkit-column-count: 3;
278
- column-count: 3;
279
- list-style-type: none;
280
- }
281
-
282
- #side-nav ul {
283
- overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
284
- }
285
-
286
- #main-nav ul {
287
- overflow: visible; /* reset ul rule for the navigation bar drop down lists */
288
- }
289
-
290
- .fragment {
291
- text-align: left;
292
- direction: ltr;
293
- overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
294
- overflow-y: hidden;
295
- }
296
-
297
- pre.fragment {
298
- border: 1px solid #C4CFE5;
299
- background-color: #FBFCFD;
300
- color: black;
301
- padding: 4px 6px;
302
- margin: 4px 8px 4px 2px;
303
- overflow: auto;
304
- word-wrap: break-word;
305
- font-size: 9pt;
306
- line-height: 125%;
307
- font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed;
308
- font-size: 105%;
309
- }
310
-
311
- div.fragment {
312
- padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/
313
- margin: 4px 8px 4px 2px;
314
- color: black;
315
- background-color: #FBFCFD;
316
- border: 1px solid #C4CFE5;
317
- }
318
-
319
- div.line {
320
- font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed;
321
- font-size: 13px;
322
- min-height: 13px;
323
- line-height: 1.2;
324
- text-wrap: unrestricted;
325
- white-space: -moz-pre-wrap; /* Moz */
326
- white-space: -pre-wrap; /* Opera 4-6 */
327
- white-space: -o-pre-wrap; /* Opera 7 */
328
- white-space: pre-wrap; /* CSS3 */
329
- word-wrap: break-word; /* IE 5.5+ */
330
- text-indent: -53px;
331
- padding-left: 53px;
332
- padding-bottom: 0px;
333
- margin: 0px;
334
- -webkit-transition-property: background-color, box-shadow;
335
- -webkit-transition-duration: 0.5s;
336
- -moz-transition-property: background-color, box-shadow;
337
- -moz-transition-duration: 0.5s;
338
- -ms-transition-property: background-color, box-shadow;
339
- -ms-transition-duration: 0.5s;
340
- -o-transition-property: background-color, box-shadow;
341
- -o-transition-duration: 0.5s;
342
- transition-property: background-color, box-shadow;
343
- transition-duration: 0.5s;
344
- }
345
-
346
- div.line:after {
347
- content:"\000A";
348
- white-space: pre;
349
- }
350
-
351
- div.line.glow {
352
- background-color: cyan;
353
- box-shadow: 0 0 10px cyan;
354
- }
355
-
356
- span.fold {
357
- margin-left: 5px;
358
- margin-right: 1px;
359
- margin-top: 0px;
360
- margin-bottom: 0px;
361
- padding: 0px;
362
- display: inline-block;
363
- width: 12px;
364
- height: 12px;
365
- background-repeat:no-repeat;
366
- background-position:center;
367
- }
368
-
369
- span.lineno {
370
- padding-right: 4px;
371
- margin-right: 9px;
372
- text-align: right;
373
- border-right: 2px solid #00FF00;
374
- color: black;
375
- background-color: #E8E8E8;
376
- white-space: pre;
377
- }
378
- span.lineno a, span.lineno a:visited {
379
- color: #4665A2;
380
- background-color: #D8D8D8;
381
- }
382
-
383
- span.lineno a:hover {
384
- color: #4665A2;
385
- background-color: #C8C8C8;
386
- }
387
-
388
- .lineno {
389
- -webkit-touch-callout: none;
390
- -webkit-user-select: none;
391
- -khtml-user-select: none;
392
- -moz-user-select: none;
393
- -ms-user-select: none;
394
- user-select: none;
395
- }
396
-
397
- div.classindex ul {
398
- list-style: none;
399
- padding-left: 0;
400
- }
401
-
402
- div.classindex span.ai {
403
- display: inline-block;
404
- }
405
-
406
- div.groupHeader {
407
- margin-left: 16px;
408
- margin-top: 12px;
409
- font-weight: bold;
410
- }
411
-
412
- div.groupText {
413
- margin-left: 16px;
414
- font-style: italic;
415
- }
416
-
417
- body {
418
- color: black;
419
- margin: 0;
420
- }
421
-
422
- div.contents {
423
- margin-top: 10px;
424
- margin-left: 12px;
425
- margin-right: 8px;
426
- }
427
-
428
- p.formulaDsp {
429
- text-align: center;
430
- }
431
-
432
- img.dark-mode-visible {
433
- display: none;
434
- }
435
- img.light-mode-visible {
436
- display: none;
437
- }
438
-
439
- img.formulaDsp {
440
-
441
- }
442
-
443
- img.formulaInl, img.inline {
444
- vertical-align: middle;
445
- }
446
-
447
- div.center {
448
- text-align: center;
449
- margin-top: 0px;
450
- margin-bottom: 0px;
451
- padding: 0px;
452
- }
453
-
454
- div.center img {
455
- border: 0px;
456
- }
457
-
458
- address.footer {
459
- text-align: right;
460
- padding-right: 12px;
461
- }
462
-
463
- img.footer {
464
- border: 0px;
465
- vertical-align: middle;
466
- width: 104px;
467
- }
468
-
469
- .compoundTemplParams {
470
- color: #4665A2;
471
- font-size: 80%;
472
- line-height: 120%;
473
- }
474
-
475
- /* @group Code Colorization */
476
-
477
- span.keyword {
478
- color: #008000;
479
- }
480
-
481
- span.keywordtype {
482
- color: #604020;
483
- }
484
-
485
- span.keywordflow {
486
- color: #E08000;
487
- }
488
-
489
- span.comment {
490
- color: #800000;
491
- }
492
-
493
- span.preprocessor {
494
- color: #806020;
495
- }
496
-
497
- span.stringliteral {
498
- color: #002080;
499
- }
500
-
501
- span.charliteral {
502
- color: #008080;
503
- }
504
-
505
- span.xmlcdata {
506
- color: black;
507
- }
508
-
509
- span.vhdldigit {
510
- color: #FF00FF;
511
- }
512
-
513
- span.vhdlchar {
514
- color: #000000;
515
- }
516
-
517
- span.vhdlkeyword {
518
- color: #700070;
519
- }
520
-
521
- span.vhdllogic {
522
- color: #FF0000;
523
- }
524
-
525
- blockquote {
526
- background-color: #F7F8FB;
527
- border-left: 2px solid #9CAFD4;
528
- margin: 0 24px 0 4px;
529
- padding: 0 12px 0 16px;
530
- }
531
-
532
- /* @end */
533
-
534
- td.tiny {
535
- font-size: 75%;
536
- }
537
-
538
- .dirtab {
539
- padding: 4px;
540
- border-collapse: collapse;
541
- border: 1px solid #2D4068;
542
- }
543
-
544
- th.dirtab {
545
- background-color: #374F7F;
546
- color: #FFFFFF;
547
- font-weight: bold;
548
- }
549
-
550
- hr {
551
- height: 0px;
552
- border: none;
553
- border-top: 1px solid #4A6AAA;
554
- }
555
-
556
- hr.footer {
557
- height: 1px;
558
- }
559
-
560
- /* @group Member Descriptions */
561
-
562
- table.memberdecls {
563
- border-spacing: 0px;
564
- padding: 0px;
565
- }
566
-
567
- .memberdecls td, .fieldtable tr {
568
- -webkit-transition-property: background-color, box-shadow;
569
- -webkit-transition-duration: 0.5s;
570
- -moz-transition-property: background-color, box-shadow;
571
- -moz-transition-duration: 0.5s;
572
- -ms-transition-property: background-color, box-shadow;
573
- -ms-transition-duration: 0.5s;
574
- -o-transition-property: background-color, box-shadow;
575
- -o-transition-duration: 0.5s;
576
- transition-property: background-color, box-shadow;
577
- transition-duration: 0.5s;
578
- }
579
-
580
- .memberdecls td.glow, .fieldtable tr.glow {
581
- background-color: cyan;
582
- box-shadow: 0 0 15px cyan;
583
- }
584
-
585
- .mdescLeft, .mdescRight,
586
- .memItemLeft, .memItemRight,
587
- .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
588
- background-color: #F9FAFC;
589
- border: none;
590
- margin: 4px;
591
- padding: 1px 0 0 8px;
592
- }
593
-
594
- .mdescLeft, .mdescRight {
595
- padding: 0px 8px 4px 8px;
596
- color: #555;
597
- }
598
-
599
- .memSeparator {
600
- border-bottom: 1px solid #DEE4F0;
601
- line-height: 1px;
602
- margin: 0px;
603
- padding: 0px;
604
- }
605
-
606
- .memItemLeft, .memTemplItemLeft {
607
- white-space: nowrap;
608
- }
609
-
610
- .memItemRight, .memTemplItemRight {
611
- width: 100%;
612
- }
613
-
614
- .memTemplParams {
615
- color: #4665A2;
616
- white-space: nowrap;
617
- font-size: 80%;
618
- }
619
-
620
- /* @end */
621
-
622
- /* @group Member Details */
623
-
624
- /* Styles for detailed member documentation */
625
-
626
- .memtitle {
627
- padding: 8px;
628
- border-top: 1px solid #A8B8D9;
629
- border-left: 1px solid #A8B8D9;
630
- border-right: 1px solid #A8B8D9;
631
- border-top-right-radius: 4px;
632
- border-top-left-radius: 4px;
633
- margin-bottom: -1px;
634
- background-image: url('nav_f.png');
635
- background-repeat: repeat-x;
636
- background-color: #E2E8F2;
637
- line-height: 1.25;
638
- font-weight: 300;
639
- float:left;
640
- }
641
-
642
- .permalink
643
- {
644
- font-size: 65%;
645
- display: inline-block;
646
- vertical-align: middle;
647
- }
648
-
649
- .memtemplate {
650
- font-size: 80%;
651
- color: #4665A2;
652
- font-weight: normal;
653
- margin-left: 9px;
654
- }
655
-
656
- .mempage {
657
- width: 100%;
658
- }
659
-
660
- .memitem {
661
- padding: 0;
662
- margin-bottom: 10px;
663
- margin-right: 5px;
664
- -webkit-transition: box-shadow 0.5s linear;
665
- -moz-transition: box-shadow 0.5s linear;
666
- -ms-transition: box-shadow 0.5s linear;
667
- -o-transition: box-shadow 0.5s linear;
668
- transition: box-shadow 0.5s linear;
669
- display: table !important;
670
- width: 100%;
671
- }
672
-
673
- .memitem.glow {
674
- box-shadow: 0 0 15px cyan;
675
- }
676
-
677
- .memname {
678
- font-weight: 400;
679
- margin-left: 6px;
680
- }
681
-
682
- .memname td {
683
- vertical-align: bottom;
684
- }
685
-
686
- .memproto, dl.reflist dt {
687
- border-top: 1px solid #A8B8D9;
688
- border-left: 1px solid #A8B8D9;
689
- border-right: 1px solid #A8B8D9;
690
- padding: 6px 0px 6px 0px;
691
- color: #253555;
692
- font-weight: bold;
693
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
694
- background-color: #DFE5F1;
695
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
696
- border-top-right-radius: 4px;
697
- }
698
-
699
- .overload {
700
- font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed;
701
- font-size: 65%;
702
- }
703
-
704
- .memdoc, dl.reflist dd {
705
- border-bottom: 1px solid #A8B8D9;
706
- border-left: 1px solid #A8B8D9;
707
- border-right: 1px solid #A8B8D9;
708
- padding: 6px 10px 2px 10px;
709
- border-top-width: 0;
710
- background-image:url('nav_g.png');
711
- background-repeat:repeat-x;
712
- background-color: white;
713
- /* opera specific markup */
714
- border-bottom-left-radius: 4px;
715
- border-bottom-right-radius: 4px;
716
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
717
- /* firefox specific markup */
718
- -moz-border-radius-bottomleft: 4px;
719
- -moz-border-radius-bottomright: 4px;
720
- -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
721
- /* webkit specific markup */
722
- -webkit-border-bottom-left-radius: 4px;
723
- -webkit-border-bottom-right-radius: 4px;
724
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
725
- }
726
-
727
- dl.reflist dt {
728
- padding: 5px;
729
- }
730
-
731
- dl.reflist dd {
732
- margin: 0px 0px 10px 0px;
733
- padding: 5px;
734
- }
735
-
736
- .paramkey {
737
- text-align: right;
738
- }
739
-
740
- .paramtype {
741
- white-space: nowrap;
742
- }
743
-
744
- .paramname {
745
- color: #602020;
746
- white-space: nowrap;
747
- }
748
- .paramname em {
749
- font-style: normal;
750
- }
751
- .paramname code {
752
- line-height: 14px;
753
- }
754
-
755
- .params, .retval, .exception, .tparams {
756
- margin-left: 0px;
757
- padding-left: 0px;
758
- }
759
-
760
- .params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname {
761
- font-weight: bold;
762
- vertical-align: top;
763
- }
764
-
765
- .params .paramtype, .tparams .paramtype {
766
- font-style: italic;
767
- vertical-align: top;
768
- }
769
-
770
- .params .paramdir, .tparams .paramdir {
771
- font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed;
772
- vertical-align: top;
773
- }
774
-
775
- table.mlabels {
776
- border-spacing: 0px;
777
- }
778
-
779
- td.mlabels-left {
780
- width: 100%;
781
- padding: 0px;
782
- }
783
-
784
- td.mlabels-right {
785
- vertical-align: bottom;
786
- padding: 0px;
787
- white-space: nowrap;
788
- }
789
-
790
- span.mlabels {
791
- margin-left: 8px;
792
- }
793
-
794
- span.mlabel {
795
- background-color: #728DC1;
796
- border-top:1px solid #5373B4;
797
- border-left:1px solid #5373B4;
798
- border-right:1px solid #C4CFE5;
799
- border-bottom:1px solid #C4CFE5;
800
- text-shadow: none;
801
- color: white;
802
- margin-right: 4px;
803
- padding: 2px 3px;
804
- border-radius: 3px;
805
- font-size: 7pt;
806
- white-space: nowrap;
807
- vertical-align: middle;
808
- }
809
-
810
-
811
-
812
- /* @end */
813
-
814
- /* these are for tree view inside a (index) page */
815
-
816
- div.directory {
817
- margin: 10px 0px;
818
- border-top: 1px solid #9CAFD4;
819
- border-bottom: 1px solid #9CAFD4;
820
- width: 100%;
821
- }
822
-
823
- .directory table {
824
- border-collapse:collapse;
825
- }
826
-
827
- .directory td {
828
- margin: 0px;
829
- padding: 0px;
830
- vertical-align: top;
831
- }
832
-
833
- .directory td.entry {
834
- white-space: nowrap;
835
- padding-right: 6px;
836
- padding-top: 3px;
837
- }
838
-
839
- .directory td.entry a {
840
- outline:none;
841
- }
842
-
843
- .directory td.entry a img {
844
- border: none;
845
- }
846
-
847
- .directory td.desc {
848
- width: 100%;
849
- padding-left: 6px;
850
- padding-right: 6px;
851
- padding-top: 3px;
852
- border-left: 1px solid rgba(0,0,0,0.05);
853
- }
854
-
855
- .directory tr.odd {
856
- padding-left: 6px;
857
- background-color: #F8F9FC;
858
- }
859
-
860
- .directory tr.even {
861
- padding-left: 6px;
862
- background-color: white;
863
- }
864
-
865
- .directory img {
866
- vertical-align: -30%;
867
- }
868
-
869
- .directory .levels {
870
- white-space: nowrap;
871
- width: 100%;
872
- text-align: right;
873
- font-size: 9pt;
874
- }
875
-
876
- .directory .levels span {
877
- cursor: pointer;
878
- padding-left: 2px;
879
- padding-right: 2px;
880
- color: #3D578C;
881
- }
882
-
883
- .arrow {
884
- color: #9CAFD4;
885
- -webkit-user-select: none;
886
- -khtml-user-select: none;
887
- -moz-user-select: none;
888
- -ms-user-select: none;
889
- user-select: none;
890
- cursor: pointer;
891
- font-size: 80%;
892
- display: inline-block;
893
- width: 16px;
894
- height: 22px;
895
- }
896
-
897
- .icon {
898
- font-family: Arial,Helvetica;
899
- line-height: normal;
900
- font-weight: bold;
901
- font-size: 12px;
902
- height: 14px;
903
- width: 16px;
904
- display: inline-block;
905
- background-color: #728DC1;
906
- color: white;
907
- text-align: center;
908
- border-radius: 4px;
909
- margin-left: 2px;
910
- margin-right: 2px;
911
- }
912
-
913
- .icona {
914
- width: 24px;
915
- height: 22px;
916
- display: inline-block;
917
- }
918
-
919
- .iconfopen {
920
- width: 24px;
921
- height: 18px;
922
- margin-bottom: 4px;
923
- background-image:url('folderopen.svg');
924
- background-repeat: repeat-y;
925
- vertical-align:top;
926
- display: inline-block;
927
- }
928
-
929
- .iconfclosed {
930
- width: 24px;
931
- height: 18px;
932
- margin-bottom: 4px;
933
- background-image:url('folderclosed.svg');
934
- background-repeat: repeat-y;
935
- vertical-align:top;
936
- display: inline-block;
937
- }
938
-
939
- .icondoc {
940
- width: 24px;
941
- height: 18px;
942
- margin-bottom: 4px;
943
- background-image:url('doc.svg');
944
- background-position: 0px -4px;
945
- background-repeat: repeat-y;
946
- vertical-align:top;
947
- display: inline-block;
948
- }
949
-
950
- /* @end */
951
-
952
- div.dynheader {
953
- margin-top: 8px;
954
- -webkit-touch-callout: none;
955
- -webkit-user-select: none;
956
- -khtml-user-select: none;
957
- -moz-user-select: none;
958
- -ms-user-select: none;
959
- user-select: none;
960
- }
961
-
962
- address {
963
- font-style: normal;
964
- color: #2A3D61;
965
- }
966
-
967
- table.doxtable caption {
968
- caption-side: top;
969
- }
970
-
971
- table.doxtable {
972
- border-collapse:collapse;
973
- margin-top: 4px;
974
- margin-bottom: 4px;
975
- }
976
-
977
- table.doxtable td, table.doxtable th {
978
- border: 1px solid #2D4068;
979
- padding: 3px 7px 2px;
980
- }
981
-
982
- table.doxtable th {
983
- background-color: #374F7F;
984
- color: #FFFFFF;
985
- font-size: 110%;
986
- padding-bottom: 4px;
987
- padding-top: 5px;
988
- }
989
-
990
- table.fieldtable {
991
- margin-bottom: 10px;
992
- border: 1px solid #A8B8D9;
993
- border-spacing: 0px;
994
- border-radius: 4px;
995
- box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
996
- }
997
-
998
- .fieldtable td, .fieldtable th {
999
- padding: 3px 7px 2px;
1000
- }
1001
-
1002
- .fieldtable td.fieldtype, .fieldtable td.fieldname {
1003
- white-space: nowrap;
1004
- border-right: 1px solid #A8B8D9;
1005
- border-bottom: 1px solid #A8B8D9;
1006
- vertical-align: top;
1007
- }
1008
-
1009
- .fieldtable td.fieldname {
1010
- padding-top: 3px;
1011
- }
1012
-
1013
- .fieldtable td.fielddoc {
1014
- border-bottom: 1px solid #A8B8D9;
1015
- }
1016
-
1017
- .fieldtable td.fielddoc p:first-child {
1018
- margin-top: 0px;
1019
- }
1020
-
1021
- .fieldtable td.fielddoc p:last-child {
1022
- margin-bottom: 2px;
1023
- }
1024
-
1025
- .fieldtable tr:last-child td {
1026
- border-bottom: none;
1027
- }
1028
-
1029
- .fieldtable th {
1030
- background-image: url('nav_f.png');
1031
- background-repeat:repeat-x;
1032
- background-color: #E2E8F2;
1033
- font-size: 90%;
1034
- color: #253555;
1035
- padding-bottom: 4px;
1036
- padding-top: 5px;
1037
- text-align:left;
1038
- font-weight: 400;
1039
- border-top-left-radius: 4px;
1040
- border-top-right-radius: 4px;
1041
- border-bottom: 1px solid #A8B8D9;
1042
- }
1043
-
1044
-
1045
- .tabsearch {
1046
- top: 0px;
1047
- left: 10px;
1048
- height: 36px;
1049
- background-image: url('tab_b.png');
1050
- z-index: 101;
1051
- overflow: hidden;
1052
- font-size: 13px;
1053
- }
1054
-
1055
- .navpath ul
1056
- {
1057
- font-size: 11px;
1058
- background-image: url('tab_b.png');
1059
- background-repeat:repeat-x;
1060
- background-position: 0 -5px;
1061
- height:30px;
1062
- line-height:30px;
1063
- color:#283A5D;
1064
- border:solid 1px #C2CDE4;
1065
- overflow:hidden;
1066
- margin:0px;
1067
- padding:0px;
1068
- }
1069
-
1070
- .navpath li
1071
- {
1072
- list-style-type:none;
1073
- float:left;
1074
- padding-left:10px;
1075
- padding-right:15px;
1076
- background-image:url('bc_s.png');
1077
- background-repeat:no-repeat;
1078
- background-position:right;
1079
- color: #364D7C;
1080
- }
1081
-
1082
- .navpath li.navelem a
1083
- {
1084
- height:32px;
1085
- display:block;
1086
- text-decoration: none;
1087
- outline: none;
1088
- color: #283A5D;
1089
- font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
1090
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
1091
- text-decoration: none;
1092
- }
1093
-
1094
- .navpath li.navelem a:hover
1095
- {
1096
- color: white;
1097
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
1098
- }
1099
-
1100
- .navpath li.footer
1101
- {
1102
- list-style-type:none;
1103
- float:right;
1104
- padding-left:10px;
1105
- padding-right:15px;
1106
- background-image:none;
1107
- background-repeat:no-repeat;
1108
- background-position:right;
1109
- color: #2A3D61;
1110
- font-size: 8pt;
1111
- }
1112
-
1113
-
1114
- div.summary
1115
- {
1116
- float: right;
1117
- font-size: 8pt;
1118
- padding-right: 5px;
1119
- width: 50%;
1120
- text-align: right;
1121
- }
1122
-
1123
- div.summary a
1124
- {
1125
- white-space: nowrap;
1126
- }
1127
-
1128
- table.classindex
1129
- {
1130
- margin: 10px;
1131
- white-space: nowrap;
1132
- margin-left: 3%;
1133
- margin-right: 3%;
1134
- width: 94%;
1135
- border: 0;
1136
- border-spacing: 0;
1137
- padding: 0;
1138
- }
1139
-
1140
- div.ingroups
1141
- {
1142
- font-size: 8pt;
1143
- width: 50%;
1144
- text-align: left;
1145
- }
1146
-
1147
- div.ingroups a
1148
- {
1149
- white-space: nowrap;
1150
- }
1151
-
1152
- div.header
1153
- {
1154
- background-image: url('nav_h.png');
1155
- background-repeat:repeat-x;
1156
- background-color: #F9FAFC;
1157
- margin: 0px;
1158
- border-bottom: 1px solid #C4CFE5;
1159
- }
1160
-
1161
- div.headertitle
1162
- {
1163
- padding: 5px 5px 5px 10px;
1164
- }
1165
-
1166
- .PageDocRTL-title div.headertitle {
1167
- text-align: right;
1168
- direction: rtl;
1169
- }
1170
-
1171
- dl {
1172
- padding: 0 0 0 0;
1173
- }
1174
-
1175
- /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */
1176
- dl.section {
1177
- margin-left: 0px;
1178
- padding-left: 0px;
1179
- }
1180
-
1181
- dl.note {
1182
- margin-left: -7px;
1183
- padding-left: 3px;
1184
- border-left: 4px solid;
1185
- border-color: #D0C000;
1186
- }
1187
-
1188
- dl.warning, dl.attention {
1189
- margin-left: -7px;
1190
- padding-left: 3px;
1191
- border-left: 4px solid;
1192
- border-color: #FF0000;
1193
- }
1194
-
1195
- dl.pre, dl.post, dl.invariant {
1196
- margin-left: -7px;
1197
- padding-left: 3px;
1198
- border-left: 4px solid;
1199
- border-color: #00D000;
1200
- }
1201
-
1202
- dl.deprecated {
1203
- margin-left: -7px;
1204
- padding-left: 3px;
1205
- border-left: 4px solid;
1206
- border-color: #505050;
1207
- }
1208
-
1209
- dl.todo {
1210
- margin-left: -7px;
1211
- padding-left: 3px;
1212
- border-left: 4px solid;
1213
- border-color: #00C0E0;
1214
- }
1215
-
1216
- dl.test {
1217
- margin-left: -7px;
1218
- padding-left: 3px;
1219
- border-left: 4px solid;
1220
- border-color: #3030E0;
1221
- }
1222
-
1223
- dl.bug {
1224
- margin-left: -7px;
1225
- padding-left: 3px;
1226
- border-left: 4px solid;
1227
- border-color: #C08050;
1228
- }
1229
-
1230
- dl.section dd {
1231
- margin-bottom: 6px;
1232
- }
1233
-
1234
-
1235
- #projectrow
1236
- {
1237
- height: 56px;
1238
- }
1239
-
1240
- #projectlogo
1241
- {
1242
- text-align: center;
1243
- vertical-align: bottom;
1244
- border-collapse: separate;
1245
- }
1246
-
1247
- #projectlogo img
1248
- {
1249
- border: 0px none;
1250
- }
1251
-
1252
- #projectalign
1253
- {
1254
- vertical-align: middle;
1255
- padding-left: 0.5em;
1256
- }
1257
-
1258
- #projectname
1259
- {
1260
- font-size: 200%;
1261
- font-family: Tahoma,Arial,sans-serif;
1262
- margin: 0px;
1263
- padding: 2px 0px;
1264
- }
1265
-
1266
- #projectbrief
1267
- {
1268
- font-size: 90%;
1269
- font-family: Tahoma,Arial,sans-serif;
1270
- margin: 0px;
1271
- padding: 0px;
1272
- }
1273
-
1274
- #projectnumber
1275
- {
1276
- font-size: 50%;
1277
- font-family: 50% Tahoma,Arial,sans-serif;
1278
- margin: 0px;
1279
- padding: 0px;
1280
- }
1281
-
1282
- #titlearea
1283
- {
1284
- padding: 0px;
1285
- margin: 0px;
1286
- width: 100%;
1287
- border-bottom: 1px solid #5373B4;
1288
- background-color: white;
1289
- }
1290
-
1291
- .image
1292
- {
1293
- text-align: center;
1294
- }
1295
-
1296
- .dotgraph
1297
- {
1298
- text-align: center;
1299
- }
1300
-
1301
- .mscgraph
1302
- {
1303
- text-align: center;
1304
- }
1305
-
1306
- .plantumlgraph
1307
- {
1308
- text-align: center;
1309
- }
1310
-
1311
- .diagraph
1312
- {
1313
- text-align: center;
1314
- }
1315
-
1316
- .caption
1317
- {
1318
- font-weight: bold;
1319
- }
1320
-
1321
- dl.citelist {
1322
- margin-bottom:50px;
1323
- }
1324
-
1325
- dl.citelist dt {
1326
- color:#334975;
1327
- float:left;
1328
- font-weight:bold;
1329
- margin-right:10px;
1330
- padding:5px;
1331
- text-align:right;
1332
- width:52px;
1333
- }
1334
-
1335
- dl.citelist dd {
1336
- margin:2px 0 2px 72px;
1337
- padding:5px 0;
1338
- }
1339
-
1340
- div.toc {
1341
- padding: 14px 25px;
1342
- background-color: #F4F6FA;
1343
- border: 1px solid #D8DFEE;
1344
- border-radius: 7px 7px 7px 7px;
1345
- float: right;
1346
- height: auto;
1347
- margin: 0 8px 10px 10px;
1348
- width: 200px;
1349
- }
1350
-
1351
- div.toc li {
1352
- background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='5px' fill='grey'><text x='0' y='5' font-size='10'>&%238595;</text></svg>") no-repeat scroll 0 5px transparent;
1353
- font: 10px/1.2 Verdana,'DejaVu Sans',Geneva,sans-serif;
1354
- margin-top: 5px;
1355
- padding-left: 10px;
1356
- padding-top: 2px;
1357
- }
1358
-
1359
- div.toc h3 {
1360
- font: bold 12px/1.2 Verdana,'DejaVu Sans',Geneva,sans-serif;
1361
- color: #4665A2;
1362
- border-bottom: 0 none;
1363
- margin: 0;
1364
- }
1365
-
1366
- div.toc ul {
1367
- list-style: none outside none;
1368
- border: medium none;
1369
- padding: 0px;
1370
- }
1371
-
1372
- div.toc li.level1 {
1373
- margin-left: 0px;
1374
- }
1375
-
1376
- div.toc li.level2 {
1377
- margin-left: 15px;
1378
- }
1379
-
1380
- div.toc li.level3 {
1381
- margin-left: 15px;
1382
- }
1383
-
1384
- div.toc li.level4 {
1385
- margin-left: 15px;
1386
- }
1387
-
1388
- span.emoji {
1389
- /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html
1390
- * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort;
1391
- */
1392
- }
1393
-
1394
- span.obfuscator {
1395
- display: none;
1396
- }
1397
-
1398
- .inherit_header {
1399
- font-weight: bold;
1400
- color: gray;
1401
- cursor: pointer;
1402
- -webkit-touch-callout: none;
1403
- -webkit-user-select: none;
1404
- -khtml-user-select: none;
1405
- -moz-user-select: none;
1406
- -ms-user-select: none;
1407
- user-select: none;
1408
- }
1409
-
1410
- .inherit_header td {
1411
- padding: 6px 0px 2px 5px;
1412
- }
1413
-
1414
- .inherit {
1415
- display: none;
1416
- }
1417
-
1418
- tr.heading h2 {
1419
- margin-top: 12px;
1420
- margin-bottom: 4px;
1421
- }
1422
-
1423
- /* tooltip related style info */
1424
-
1425
- .ttc {
1426
- position: absolute;
1427
- display: none;
1428
- }
1429
-
1430
- #powerTip {
1431
- cursor: default;
1432
- /*white-space: nowrap;*/
1433
- color: black;
1434
- background-color: white;
1435
- border: 1px solid gray;
1436
- border-radius: 4px 4px 4px 4px;
1437
- box-shadow: 1px 1px 7px gray;
1438
- display: none;
1439
- font-size: smaller;
1440
- max-width: 80%;
1441
- opacity: 0.9;
1442
- padding: 1ex 1em 1em;
1443
- position: absolute;
1444
- z-index: 2147483647;
1445
- }
1446
-
1447
- #powerTip div.ttdoc {
1448
- color: grey;
1449
- font-style: italic;
1450
- }
1451
-
1452
- #powerTip div.ttname a {
1453
- font-weight: bold;
1454
- }
1455
-
1456
- #powerTip a {
1457
- color: #4665A2;
1458
- }
1459
-
1460
- #powerTip div.ttname {
1461
- font-weight: bold;
1462
- }
1463
-
1464
- #powerTip div.ttdeci {
1465
- color: #006318;
1466
- }
1467
-
1468
- #powerTip div {
1469
- margin: 0px;
1470
- padding: 0px;
1471
- font-size: 12px;
1472
- font-family: Roboto,sans-serif;
1473
- line-height: 16px;
1474
- }
1475
-
1476
- #powerTip:before, #powerTip:after {
1477
- content: "";
1478
- position: absolute;
1479
- margin: 0px;
1480
- }
1481
-
1482
- #powerTip.n:after, #powerTip.n:before,
1483
- #powerTip.s:after, #powerTip.s:before,
1484
- #powerTip.w:after, #powerTip.w:before,
1485
- #powerTip.e:after, #powerTip.e:before,
1486
- #powerTip.ne:after, #powerTip.ne:before,
1487
- #powerTip.se:after, #powerTip.se:before,
1488
- #powerTip.nw:after, #powerTip.nw:before,
1489
- #powerTip.sw:after, #powerTip.sw:before {
1490
- border: solid transparent;
1491
- content: " ";
1492
- height: 0;
1493
- width: 0;
1494
- position: absolute;
1495
- }
1496
-
1497
- #powerTip.n:after, #powerTip.s:after,
1498
- #powerTip.w:after, #powerTip.e:after,
1499
- #powerTip.nw:after, #powerTip.ne:after,
1500
- #powerTip.sw:after, #powerTip.se:after {
1501
- border-color: rgba(255, 255, 255, 0);
1502
- }
1503
-
1504
- #powerTip.n:before, #powerTip.s:before,
1505
- #powerTip.w:before, #powerTip.e:before,
1506
- #powerTip.nw:before, #powerTip.ne:before,
1507
- #powerTip.sw:before, #powerTip.se:before {
1508
- border-color: rgba(128, 128, 128, 0);
1509
- }
1510
-
1511
- #powerTip.n:after, #powerTip.n:before,
1512
- #powerTip.ne:after, #powerTip.ne:before,
1513
- #powerTip.nw:after, #powerTip.nw:before {
1514
- top: 100%;
1515
- }
1516
-
1517
- #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
1518
- border-top-color: white;
1519
- border-width: 10px;
1520
- margin: 0px -10px;
1521
- }
1522
- #powerTip.n:before, #powerTip.ne:before, #powerTip.nw:before {
1523
- border-top-color: gray;
1524
- border-width: 11px;
1525
- margin: 0px -11px;
1526
- }
1527
- #powerTip.n:after, #powerTip.n:before {
1528
- left: 50%;
1529
- }
1530
-
1531
- #powerTip.nw:after, #powerTip.nw:before {
1532
- right: 14px;
1533
- }
1534
-
1535
- #powerTip.ne:after, #powerTip.ne:before {
1536
- left: 14px;
1537
- }
1538
-
1539
- #powerTip.s:after, #powerTip.s:before,
1540
- #powerTip.se:after, #powerTip.se:before,
1541
- #powerTip.sw:after, #powerTip.sw:before {
1542
- bottom: 100%;
1543
- }
1544
-
1545
- #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
1546
- border-bottom-color: white;
1547
- border-width: 10px;
1548
- margin: 0px -10px;
1549
- }
1550
-
1551
- #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before {
1552
- border-bottom-color: gray;
1553
- border-width: 11px;
1554
- margin: 0px -11px;
1555
- }
1556
-
1557
- #powerTip.s:after, #powerTip.s:before {
1558
- left: 50%;
1559
- }
1560
-
1561
- #powerTip.sw:after, #powerTip.sw:before {
1562
- right: 14px;
1563
- }
1564
-
1565
- #powerTip.se:after, #powerTip.se:before {
1566
- left: 14px;
1567
- }
1568
-
1569
- #powerTip.e:after, #powerTip.e:before {
1570
- left: 100%;
1571
- }
1572
- #powerTip.e:after {
1573
- border-left-color: gray;
1574
- border-width: 10px;
1575
- top: 50%;
1576
- margin-top: -10px;
1577
- }
1578
- #powerTip.e:before {
1579
- border-left-color: gray;
1580
- border-width: 11px;
1581
- top: 50%;
1582
- margin-top: -11px;
1583
- }
1584
-
1585
- #powerTip.w:after, #powerTip.w:before {
1586
- right: 100%;
1587
- }
1588
- #powerTip.w:after {
1589
- border-right-color: gray;
1590
- border-width: 10px;
1591
- top: 50%;
1592
- margin-top: -10px;
1593
- }
1594
- #powerTip.w:before {
1595
- border-right-color: gray;
1596
- border-width: 11px;
1597
- top: 50%;
1598
- margin-top: -11px;
1599
- }
1600
-
1601
- @media print
1602
- {
1603
- #top { display: none; }
1604
- #side-nav { display: none; }
1605
- #nav-path { display: none; }
1606
- body { overflow:visible; }
1607
- h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
1608
- .summary { display: none; }
1609
- .memitem { page-break-inside: avoid; }
1610
- #doc-content
1611
- {
1612
- margin-left:0 !important;
1613
- height:auto !important;
1614
- width:auto !important;
1615
- overflow:inherit;
1616
- display:inline;
1617
- }
1618
- }
1619
-
1620
- /* @group Markdown */
1621
-
1622
- table.markdownTable {
1623
- border-collapse:collapse;
1624
- margin-top: 4px;
1625
- margin-bottom: 4px;
1626
- }
1627
-
1628
- table.markdownTable td, table.markdownTable th {
1629
- border: 1px solid #2D4068;
1630
- padding: 3px 7px 2px;
1631
- }
1632
-
1633
- table.markdownTable tr {
1634
- }
1635
-
1636
- th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone {
1637
- background-color: #374F7F;
1638
- color: #FFFFFF;
1639
- font-size: 110%;
1640
- padding-bottom: 4px;
1641
- padding-top: 5px;
1642
- }
1643
-
1644
- th.markdownTableHeadLeft, td.markdownTableBodyLeft {
1645
- text-align: left
1646
- }
1647
-
1648
- th.markdownTableHeadRight, td.markdownTableBodyRight {
1649
- text-align: right
1650
- }
1651
-
1652
- th.markdownTableHeadCenter, td.markdownTableBodyCenter {
1653
- text-align: center
1654
- }
1655
-
1656
- tt, code, kbd, samp
1657
- {
1658
- display: inline-block;
1659
- }
1660
- /* @end */
1661
-
1662
- u {
1663
- text-decoration: underline;
1664
- }
1665
-
1666
- details>summary {
1667
- list-style-type: none;
1668
- }
1669
-
1670
- details > summary::-webkit-details-marker {
1671
- display: none;
1672
- }
1673
-
1674
- details>summary::before {
1675
- content: "\25ba";
1676
- padding-right:4px;
1677
- font-size: 80%;
1678
- }
1679
-
1680
- details[open]>summary::before {
1681
- content: "\25bc";
1682
- padding-right:4px;
1683
- font-size: 80%;
1684
- }
1685
-