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,44 +0,0 @@
1
- var searchData=
2
- [
3
- ['o_0',['Clipboard text I/O',['../news.html#news_30_clipboard',1,'']]],
4
- ['object_20sharing_1',['Context object sharing',['../context_guide.html#context_sharing',1,'']]],
5
- ['objects_2',['objects',['../context_guide.html#context_object',1,'Context objects'],['../input_guide.html#cursor_object',1,'Cursor objects'],['../monitor_guide.html#monitor_object',1,'Monitor objects'],['../window_guide.html#window_object',1,'Window objects']]],
6
- ['of_20256_20may_20be_20rejected_3',['Gamma ramp size of 256 may be rejected',['../news.html#gamma_ramp_size_33',1,'']]],
7
- ['of_20a_20key_4',['Query for the scancode of a key',['../news.html#key_scancode_33',1,'']]],
8
- ['of_20automatic_20event_20polling_5',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
9
- ['of_20character_20actions_6',['Removal of character actions',['../moving_guide.html#moving_char_up',1,'']]],
10
- ['of_20glfwcall_20macro_7',['Removal of GLFWCALL macro',['../moving_guide.html#moving_stdcall',1,'']]],
11
- ['of_20image_20and_20texture_20loading_8',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
12
- ['of_20joysticks_20have_20changed_9',['Layout of joysticks have changed',['../news.html#joystick_layout_33',1,'']]],
13
- ['of_20system_20wide_20hotkeys_10',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
14
- ['of_20threading_20functions_11',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
15
- ['of_20window_20and_20framebuffer_20sizes_12',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
16
- ['of_20windows_20older_20than_20xp_13',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
17
- ['off_20screen_20context_20creation_20support_14',['OSMesa off-screen context creation support',['../news.html#osmesa_33',1,'']]],
18
- ['offscreen_20contexts_15',['Offscreen contexts',['../context_guide.html#context_offscreen',1,'']]],
19
- ['offsets_16',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
20
- ['older_20than_20xp_17',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
21
- ['older_20wayland_20systems_18',['Frambuffer may lack alpha channel on older Wayland systems',['../news.html#wayland_alpha_34',1,'']]],
22
- ['on_20macos_19',['on macos',['../compat_guide.html#compat_osx',1,'OpenGL on macOS'],['../build_guide.html#build_link_osx',1,'With command-line on macOS'],['../build_guide.html#build_link_xcode',1,'With Xcode on macOS']]],
23
- ['on_20macos_20via_20moltenvk_20',['Support for Vulkan on macOS via MoltenVK',['../news.html#moltenvk_33',1,'']]],
24
- ['on_20older_20wayland_20systems_21',['Frambuffer may lack alpha channel on older Wayland systems',['../news.html#wayland_alpha_34',1,'']]],
25
- ['on_20show_22',['Window hint and attribute for input focus on show',['../news.html#focusonshow_33',1,'']]],
26
- ['on_20unix_23',['With makefiles and pkg-config on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
27
- ['on_20unix_20like_20systems_24',['on unix like systems',['../compile_guide.html#compile_deps_wayland',1,'Dependencies for Wayland on Unix-like systems'],['../compile_guide.html#compile_deps_x11',1,'Dependencies for X11 on Unix-like systems']]],
28
- ['on_20windows_25',['With MinGW or Visual C++ on Windows',['../build_guide.html#build_link_win32',1,'']]],
29
- ['on_20x11_20no_20longer_20roundtrip_20to_20server_26',['Empty events on X11 no longer roundtrip to server',['../news.html#emptyevents_33',1,'']]],
30
- ['opengl_27',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
31
- ['opengl_20and_20opengl_20es_20extensions_28',['OpenGL and OpenGL ES extensions',['../context_guide.html#context_glext',1,'']]],
32
- ['opengl_20context_20current_29',['Making the OpenGL context current',['../quick_guide.html#quick_context_current',1,'']]],
33
- ['opengl_20es_20support_30',['OpenGL ES support',['../news.html#news_30_gles',1,'']]],
34
- ['opengl_20on_20macos_31',['OpenGL on macOS',['../compat_guide.html#compat_osx',1,'']]],
35
- ['option_20lib_5fsuffix_32',['CMake option LIB_SUFFIX',['../news.html#lib_suffix_33',1,'']]],
36
- ['option_20macros_33',['GLFW header option macros',['../build_guide.html#build_macros',1,'']]],
37
- ['options_34',['options',['../compile_guide.html#compile_options',1,'CMake options'],['../compile_guide.html#compile_options_shared',1,'Shared CMake options'],['../compile_guide.html#compile_options_wayland',1,'Wayland specific CMake options'],['../compile_guide.html#compile_options_win32',1,'Windows specific CMake options']]],
38
- ['options_20and_20macros_35',['macOS specific CMake options and macros',['../news.html#macos_options_33',1,'']]],
39
- ['or_20later_20is_20required_36',['CMake 3.0 or later is required',['../news.html#cmake_version_33',1,'']]],
40
- ['or_20visual_20c_20on_20windows_37',['With MinGW or Visual C++ on Windows',['../build_guide.html#build_link_win32',1,'']]],
41
- ['order_38',['Event order',['../intro_guide.html#event_order',1,'']]],
42
- ['osmesa_20off_20screen_20context_20creation_20support_39',['OSMesa off-screen context creation support',['../news.html#osmesa_33',1,'']]],
43
- ['output_40',['Clipboard input and output',['../input_guide.html#clipboard',1,'']]]
44
- ];
@@ -1,34 +0,0 @@
1
- var searchData=
2
- [
3
- ['package_20support_0',['CMake config-file package support',['../news.html#news_32_cmake',1,'']]],
4
- ['parameter_20to_20clipboard_20functions_1',['Window parameter to clipboard functions',['../news.html#clipboard_window_33',1,'']]],
5
- ['parameters_2',['Window handle parameters',['../moving_guide.html#moving_window_handles',1,'']]],
6
- ['path_20drop_20event_3',['Path drop event',['../news.html#news_31_drop',1,'']]],
7
- ['path_20drop_20input_4',['Path drop input',['../input_guide.html#path_drop',1,'']]],
8
- ['per_20window_20user_20pointer_5',['Per-window user pointer',['../news.html#news_30_wndptr',1,'']]],
9
- ['persistent_20window_20hints_6',['Persistent window hints',['../moving_guide.html#moving_hints',1,'']]],
10
- ['physical_20key_20input_7',['Physical key input',['../moving_guide.html#moving_keys',1,'']]],
11
- ['physical_20size_8',['Physical size',['../monitor_guide.html#monitor_size',1,'']]],
12
- ['pixels_9',['pixels',['../struct_g_l_f_wimage.html#a0c532a5c2bb715555279b7817daba0fb',1,'GLFWimage']]],
13
- ['pkg_20config_20on_20unix_10',['With makefiles and pkg-config on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
14
- ['platform_20interface_11',['Platform interface',['../internals_guide.html#internals_platform',1,'']]],
15
- ['platform_20specific_20scancodes_12',['Platform-specific scancodes',['../news.html#news_30_scancode',1,'']]],
16
- ['pointer_13',['pointer',['../input_guide.html#joystick_userptr',1,'Joystick user pointer'],['../news.html#news_30_wndptr',1,'Per-window user pointer'],['../monitor_guide.html#monitor_userptr',1,'User pointer'],['../window_guide.html#window_userptr',1,'User pointer']]],
17
- ['pointer_20lifetimes_14',['Pointer lifetimes',['../intro_guide.html#lifetime',1,'']]],
18
- ['pointers_15',['pointers',['../context_guide.html#context_glext_proc',1,'Fetching function pointers'],['../news.html#device_userptr_33',1,'Monitor and joystick user pointers'],['../vulkan_guide.html#vulkan_proc',1,'Querying Vulkan function pointers']]],
19
- ['polling_16',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
20
- ['position_17',['position',['../input_guide.html#cursor_pos',1,'Cursor position'],['../news.html#news_31_direct',1,'Direct access for window attributes and cursor position'],['../monitor_guide.html#monitor_pos',1,'Virtual position'],['../window_guide.html#window_pos',1,'Window position']]],
21
- ['position_20callback_18',['Window position callback',['../news.html#news_30_wndposfun',1,'']]],
22
- ['position_20changes_19',['Cursor position changes',['../moving_guide.html#moving_cursorpos',1,'']]],
23
- ['position_20query_20',['Window position query',['../news.html#news_30_wndpos',1,'']]],
24
- ['position_20replaced_20by_20scroll_20offsets_21',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
25
- ['presentation_20support_22',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
26
- ['processing_23',['processing',['../input_guide.html#events',1,'Event processing'],['../window_guide.html#window_events',1,'Window event processing']]],
27
- ['processing_20events_24',['Processing events',['../quick_guide.html#quick_process_events',1,'']]],
28
- ['properties_25',['Monitor properties',['../monitor_guide.html#monitor_properties',1,'']]],
29
- ['properties_20and_20events_26',['Window properties and events',['../window_guide.html#window_properties',1,'']]],
30
- ['protocol_27',['Support for the wl_shell protocol',['../news.html#wl_shell_33',1,'']]],
31
- ['protocols_20and_20ipc_20standards_28',['protocols and ipc standards',['../compat_guide.html#compat_wayland',1,'Wayland protocols and IPC standards'],['../compat_guide.html#compat_x11',1,'X11 extensions, protocols and IPC standards']]],
32
- ['public_20interface_29',['Public interface',['../internals_guide.html#internals_public',1,'']]],
33
- ['putting_20it_20together_30',['Putting it together',['../quick_guide.html#quick_example',1,'']]]
34
- ];
@@ -1,12 +0,0 @@
1
- var searchData=
2
- [
3
- ['queries_20for_20dpi_20aware_20rendering_0',['Content scale queries for DPI-aware rendering',['../news.html#content_scale_33',1,'']]],
4
- ['query_1',['query',['../news.html#geterror_33',1,'Error query'],['../news.html#news_31_framesize',1,'Window frame size query'],['../news.html#news_30_wndpos',1,'Window position query']]],
5
- ['query_20for_20the_20monitor_20work_20area_2',['Query for the monitor work area',['../news.html#workarea_33',1,'']]],
6
- ['query_20for_20the_20scancode_20of_20a_20key_3',['Query for the scancode of a key',['../news.html#key_scancode_33',1,'']]],
7
- ['querying_20for_20vulkan_20presentation_20support_4',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
8
- ['querying_20for_20vulkan_20support_5',['Querying for Vulkan support',['../vulkan_guide.html#vulkan_support',1,'']]],
9
- ['querying_20required_20vulkan_20extensions_6',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
10
- ['querying_20vulkan_20function_20pointers_7',['Querying Vulkan function pointers',['../vulkan_guide.html#vulkan_proc',1,'']]],
11
- ['quick_2edox_8',['quick.dox',['../quick_8dox.html',1,'']]]
12
- ];
@@ -1,52 +0,0 @@
1
- var searchData=
2
- [
3
- ['ramp_0',['Gamma ramp',['../monitor_guide.html#monitor_gamma',1,'']]],
4
- ['ramp_20size_20of_20256_20may_20be_20rejected_1',['Gamma ramp size of 256 may be rejected',['../news.html#gamma_ramp_size_33',1,'']]],
5
- ['ramp_20support_2',['Gamma ramp support',['../news.html#news_30_gamma',1,'']]],
6
- ['raw_20mouse_20motion_3',['raw mouse motion',['../input_guide.html#raw_mouse_motion',1,'Raw mouse motion'],['../news.html#raw_motion_33',1,'Support for raw mouse motion']]],
7
- ['raw_20timer_20access_4',['Raw timer access',['../news.html#news_32_timer',1,'']]],
8
- ['readable_20name_5',['Human-readable name',['../monitor_guide.html#monitor_name',1,'']]],
9
- ['reading_20the_20timer_6',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
10
- ['receiving_20input_20events_7',['Receiving input events',['../quick_guide.html#quick_key_input',1,'']]],
11
- ['red_8',['red',['../struct_g_l_f_wgammaramp.html#a2cce5d968734b685623eef913e635138',1,'GLFWgammaramp']]],
12
- ['redbits_9',['redBits',['../struct_g_l_f_wvidmode.html#a6066c4ecd251098700062d3b735dba1b',1,'GLFWvidmode']]],
13
- ['reentrancy_10',['Reentrancy',['../intro_guide.html#reentrancy',1,'']]],
14
- ['reference_11',['reference',['../group__context.html',1,'Context reference'],['../group__init.html',1,'Initialization, version and error reference'],['../group__input.html',1,'Input reference'],['../group__monitor.html',1,'Monitor reference'],['../group__vulkan.html',1,'Vulkan support reference'],['../group__window.html',1,'Window reference']]],
15
- ['refresh_12',['Window damage and refresh',['../window_guide.html#window_refresh',1,'']]],
16
- ['refreshrate_13',['refreshRate',['../struct_g_l_f_wvidmode.html#a791bdd6c7697b09f7e9c97054bf05649',1,'GLFWvidmode']]],
17
- ['rejected_14',['Gamma ramp size of 256 may be rejected',['../news.html#gamma_ramp_size_33',1,'']]],
18
- ['related_20attributes_15',['related attributes',['../window_guide.html#window_attribs_ctx',1,'Context related attributes'],['../window_guide.html#window_attribs_fb',1,'Framebuffer related attributes'],['../window_guide.html#window_attribs_wnd',1,'Window related attributes']]],
19
- ['related_20hints_16',['related hints',['../window_guide.html#window_hints_ctx',1,'Context related hints'],['../window_guide.html#window_hints_fb',1,'Framebuffer related hints'],['../window_guide.html#window_hints_mtr',1,'Monitor related hints'],['../window_guide.html#window_hints_wnd',1,'Window related hints']]],
20
- ['release_20behaviors_17',['Context release behaviors',['../news.html#news_31_release',1,'']]],
21
- ['release_20notes_18',['Release notes',['../news.html',1,'']]],
22
- ['release_20notes_20for_203_200_19',['Release notes for 3.0',['../news.html#news_30',1,'']]],
23
- ['release_20notes_20for_203_201_20',['Release notes for 3.1',['../news.html#news_31',1,'']]],
24
- ['release_20notes_20for_203_202_21',['Release notes for 3.2',['../news.html#news_32',1,'']]],
25
- ['release_20notes_20for_20version_203_203_22',['Release notes for version 3.3',['../news.html#news_33',1,'']]],
26
- ['removal_20of_20automatic_20event_20polling_23',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
27
- ['removal_20of_20character_20actions_24',['Removal of character actions',['../moving_guide.html#moving_char_up',1,'']]],
28
- ['removal_20of_20glfwcall_20macro_25',['Removal of GLFWCALL macro',['../moving_guide.html#moving_stdcall',1,'']]],
29
- ['removal_20of_20image_20and_20texture_20loading_26',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
30
- ['removal_20of_20threading_20functions_27',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
31
- ['removals_20in_203_203_28',['Removals in 3.3',['../news.html#removals_33',1,'']]],
32
- ['removed_29',['Windows XInput deadzone removed',['../news.html#xinput_deadzone_33',1,'']]],
33
- ['removed_20features_30',['Changed and removed features',['../moving_guide.html#moving_removed',1,'']]],
34
- ['renamed_20functions_31',['Renamed functions',['../moving_guide.html#moving_renamed_functions',1,'']]],
35
- ['renamed_20library_20and_20header_20file_32',['Renamed library and header file',['../moving_guide.html#moving_renamed_files',1,'']]],
36
- ['renamed_20tokens_33',['Renamed tokens',['../moving_guide.html#moving_renamed_tokens',1,'']]],
37
- ['renamed_20types_34',['Renamed types',['../moving_guide.html#moving_renamed_types',1,'']]],
38
- ['rendering_35',['rendering',['../news.html#content_scale_33',1,'Content scale queries for DPI-aware rendering'],['../news.html#news_31_autoiconify',1,'Simultaneous multi-monitor rendering']]],
39
- ['rendering_20with_20opengl_36',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
40
- ['repeat_20action_37',['Key repeat action',['../moving_guide.html#moving_repeat',1,'']]],
41
- ['replaced_20by_20scroll_20offsets_38',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
42
- ['request_39',['request',['../news.html#attention_33',1,'User attention request'],['../window_guide.html#window_attention',1,'Window attention request']]],
43
- ['required_40',['CMake 3.0 or later is required',['../news.html#cmake_version_33',1,'']]],
44
- ['required_20to_20wait_20for_20events_41',['No window required to wait for events',['../news.html#wait_events_33',1,'']]],
45
- ['required_20vulkan_20extensions_42',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
46
- ['requires_20dwm_20transparency_43',['Framebuffer transparency requires DWM transparency',['../news.html#caveat_fbtransparency_33',1,'']]],
47
- ['retrieving_20monitors_44',['Retrieving monitors',['../monitor_guide.html#monitor_monitors',1,'']]],
48
- ['right_20libraries_45',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
49
- ['roundtrip_20to_20server_46',['Empty events on X11 no longer roundtrip to server',['../news.html#emptyevents_33',1,'']]],
50
- ['run_20time_20context_20creation_20api_20selection_47',['Run-time context creation API selection',['../news.html#news_32_contextapi',1,'']]],
51
- ['run_20time_20version_48',['Run-time version',['../intro_guide.html#intro_version_runtime',1,'']]]
52
- ];
@@ -1,69 +0,0 @@
1
- var searchData=
2
- [
3
- ['safety_0',['Thread safety',['../intro_guide.html#thread_safety',1,'']]],
4
- ['scale_1',['scale',['../monitor_guide.html#monitor_scale',1,'Content scale'],['../window_guide.html#window_scale',1,'Window content scale']]],
5
- ['scale_20queries_20for_20dpi_20aware_20rendering_2',['Content scale queries for DPI-aware rendering',['../news.html#content_scale_33',1,'']]],
6
- ['scancode_20of_20a_20key_3',['Query for the scancode of a key',['../news.html#key_scancode_33',1,'']]],
7
- ['scancodes_4',['Platform-specific scancodes',['../news.html#news_30_scancode',1,'']]],
8
- ['screen_20context_20creation_20support_5',['OSMesa off-screen context creation support',['../news.html#osmesa_33',1,'']]],
9
- ['screen_20windows_6',['screen windows',['../window_guide.html#window_windowed_full_screen',1,'"Windowed full screen" windows'],['../window_guide.html#window_full_screen',1,'Full screen windows']]],
10
- ['scroll_20input_7',['Scroll input',['../input_guide.html#scrolling',1,'']]],
11
- ['scroll_20offsets_8',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
12
- ['sdk_20dependency_9',['LunarG Vulkan SDK dependency',['../news.html#vulkan_sdk_33',1,'']]],
13
- ['sdl_5fgamecontrollerdb_10',['Gamepad input via SDL_GameControllerDB',['../news.html#gamepad_33',1,'']]],
14
- ['selection_11',['selection',['../moving_guide.html#moving_monitor',1,'Explicit monitor selection'],['../news.html#news_32_contextapi',1,'Run-time context creation API selection']]],
15
- ['separation_20of_20window_20and_20framebuffer_20sizes_12',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
16
- ['server_13',['Empty events on X11 no longer roundtrip to server',['../news.html#emptyevents_33',1,'']]],
17
- ['setting_14',['Cursor setting',['../input_guide.html#cursor_set',1,'']]],
18
- ['setting_20an_20error_20callback_15',['Setting an error callback',['../quick_guide.html#quick_capture_error',1,'']]],
19
- ['shapes_16',['Standard cursor shapes',['../group__shapes.html',1,'']]],
20
- ['shared_20cmake_20options_17',['Shared CMake options',['../compile_guide.html#compile_options_shared',1,'']]],
21
- ['shared_20init_20hints_18',['Shared init hints',['../intro_guide.html#init_hints_shared',1,'']]],
22
- ['sharing_19',['Context object sharing',['../context_guide.html#context_sharing',1,'']]],
23
- ['show_20',['Window hint and attribute for input focus on show',['../news.html#focusonshow_33',1,'']]],
24
- ['simultaneous_20multi_20monitor_20rendering_21',['Simultaneous multi-monitor rendering',['../news.html#news_31_autoiconify',1,'']]],
25
- ['single_20buffered_20framebuffers_22',['Single buffered framebuffers',['../news.html#news_31_single',1,'']]],
26
- ['size_23',['size',['../window_guide.html#window_fbsize',1,'Framebuffer size'],['../monitor_guide.html#monitor_size',1,'Physical size'],['../struct_g_l_f_wgammaramp.html#ad620e1cffbff9a32c51bca46301b59a5',1,'GLFWgammaramp::size'],['../window_guide.html#window_size',1,'Window size']]],
27
- ['size_20limit_20support_24',['Window size limit support',['../news.html#news_32_sizelimits',1,'']]],
28
- ['size_20limits_25',['Window size limits',['../window_guide.html#window_sizelimits',1,'']]],
29
- ['size_20of_20256_20may_20be_20rejected_26',['Gamma ramp size of 256 may be rejected',['../news.html#gamma_ramp_size_33',1,'']]],
30
- ['size_20query_27',['Window frame size query',['../news.html#news_31_framesize',1,'']]],
31
- ['sizes_28',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
32
- ['soft_20constraints_29',['Hard and soft constraints',['../window_guide.html#window_hints_hard',1,'']]],
33
- ['source_30',['With CMake and GLFW source',['../build_guide.html#build_link_cmake_source',1,'']]],
34
- ['specific_20cmake_20options_31',['specific cmake options',['../compile_guide.html#compile_options_wayland',1,'Wayland specific CMake options'],['../compile_guide.html#compile_options_win32',1,'Windows specific CMake options']]],
35
- ['specific_20cmake_20options_20and_20macros_32',['macOS specific CMake options and macros',['../news.html#macos_options_33',1,'']]],
36
- ['specific_20init_20hints_33',['specific init hints',['../intro_guide.html#init_hints_osx',1,'macOS specific init hints'],['../intro_guide.html#init_hints_wayland',1,'Wayland specific init hints']]],
37
- ['specific_20scancodes_34',['Platform-specific scancodes',['../news.html#news_30_scancode',1,'']]],
38
- ['specific_20window_20hints_35',['specific window hints',['../window_guide.html#window_hints_osx',1,'macOS specific window hints'],['../window_guide.html#window_hints_x11',1,'X11 specific window hints']]],
39
- ['standard_20cursor_20creation_36',['Standard cursor creation',['../input_guide.html#cursor_standard',1,'']]],
40
- ['standard_20cursor_20shapes_37',['Standard cursor shapes',['../group__shapes.html',1,'']]],
41
- ['standards_38',['standards',['../compat_guide.html#compat_wayland',1,'Wayland protocols and IPC standards'],['../compat_guide.html#compat_x11',1,'X11 extensions, protocols and IPC standards']]],
42
- ['standards_20conformance_39',['Standards conformance',['../compat_guide.html',1,'']]],
43
- ['started_40',['Getting started',['../quick_guide.html',1,'']]],
44
- ['states_41',['states',['../input_guide.html#joystick_axis',1,'Joystick axis states'],['../input_guide.html#joystick_button',1,'Joystick button states'],['../input_guide.html#joystick_hat',1,'Joystick hat states'],['../group__hat__state.html',1,'Joystick hat states']]],
45
- ['static_20functions_42',['Static functions',['../internals_guide.html#internals_static',1,'']]],
46
- ['step_43',['Step by step',['../quick_guide.html#quick_steps',1,'']]],
47
- ['step_20by_20step_44',['Step by step',['../quick_guide.html#quick_steps',1,'']]],
48
- ['string_45',['Version string',['../intro_guide.html#intro_version_string',1,'']]],
49
- ['structure_46',['Internal structure',['../internals_guide.html',1,'']]],
50
- ['support_47',['support',['../news.html#news_30_egl',1,'(Experimental) EGL support'],['../news.html#news_31_mir',1,'(Experimental) Mir support'],['../news.html#news_31_wayland',1,'(Experimental) Wayland support'],['../news.html#news_32_cmake',1,'CMake config-file package support'],['../news.html#news_30_gamma',1,'Gamma ramp support'],['../news.html#news_30_hidpi',1,'High-DPI support'],['../news.html#mir_removed_33',1,'Mir support'],['../news.html#news_30_multimon',1,'Multi-monitor support'],['../news.html#news_30_multiwnd',1,'Multi-window support'],['../news.html#news_30_gles',1,'OpenGL ES support'],['../news.html#osmesa_33',1,'OSMesa off-screen context creation support'],['../vulkan_guide.html#vulkan_present',1,'Querying for Vulkan presentation support'],['../vulkan_guide.html#vulkan_support',1,'Querying for Vulkan support'],['../news.html#news_30_unicode',1,'Unicode support'],['../moving_guide.html#moving_mbcs',1,'Win32 MBCS support'],['../news.html#news_32_icon',1,'Window icon support'],['../news.html#news_32_maximize',1,'Window maxmimization support'],['../news.html#news_32_sizelimits',1,'Window size limit support']]],
51
- ['support_20for_20initialization_20hints_48',['Support for initialization hints',['../news.html#init_hints_33',1,'']]],
52
- ['support_20for_20more_20context_20creation_20extensions_49',['Support for more context creation extensions',['../news.html#glext_33',1,'']]],
53
- ['support_20for_20raw_20mouse_20motion_50',['Support for raw mouse motion',['../news.html#raw_motion_33',1,'']]],
54
- ['support_20for_20the_20wl_5fshell_20protocol_51',['Support for the wl_shell protocol',['../news.html#wl_shell_33',1,'']]],
55
- ['support_20for_20updating_20window_20attributes_52',['Support for updating window attributes',['../news.html#setwindowattrib_33',1,'']]],
56
- ['support_20for_20versions_20of_20windows_20older_20than_20xp_53',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
57
- ['support_20for_20vulkan_54',['Support for Vulkan',['../news.html#news_32_vulkan',1,'']]],
58
- ['support_20for_20vulkan_20on_20macos_20via_20moltenvk_55',['Support for Vulkan on macOS via MoltenVK',['../news.html#moltenvk_33',1,'']]],
59
- ['support_20reference_56',['Vulkan support reference',['../group__vulkan.html',1,'']]],
60
- ['supported_20and_20default_20values_57',['supported and default values',['../intro_guide.html#init_hints_values',1,'Supported and default values'],['../window_guide.html#window_hints_values',1,'Supported and default values']]],
61
- ['surface_58',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
62
- ['swapping_59',['swapping',['../window_guide.html#buffer_swap',1,'Buffer swapping'],['../context_guide.html#context_swap',1,'Buffer swapping']]],
63
- ['swapping_20buffers_60',['Swapping buffers',['../quick_guide.html#quick_swap_buffers',1,'']]],
64
- ['switching_61',['Window mode switching',['../news.html#news_32_setwindowmonitor',1,'']]],
65
- ['symbols_20in_20version_203_203_62',['New symbols in version 3.3',['../news.html#symbols_33',1,'']]],
66
- ['system_63',['CMake build system',['../news.html#news_30_cmake',1,'']]],
67
- ['system_20wide_20hotkeys_64',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
68
- ['systems_65',['systems',['../intro_guide.html#coordinate_systems',1,'Coordinate systems'],['../compile_guide.html#compile_deps_wayland',1,'Dependencies for Wayland on Unix-like systems'],['../compile_guide.html#compile_deps_x11',1,'Dependencies for X11 on Unix-like systems'],['../news.html#wayland_alpha_34',1,'Frambuffer may lack alpha channel on older Wayland systems']]]
69
- ];
@@ -1,51 +0,0 @@
1
- var searchData=
2
- [
3
- ['tables_0',['Name change tables',['../moving_guide.html#moving_tables',1,'']]],
4
- ['terminating_20glfw_1',['terminating glfw',['../quick_guide.html#quick_init_term',1,'Initializing and terminating GLFW'],['../intro_guide.html#intro_init_terminate',1,'Terminating GLFW']]],
5
- ['termination_2',['termination',['../moving_guide.html#moving_terminate',1,'Automatic termination'],['../intro_guide.html#intro_init',1,'Initialization and termination']]],
6
- ['text_20i_20o_3',['Clipboard text I/O',['../news.html#news_30_clipboard',1,'']]],
7
- ['text_20input_4',['Text input',['../input_guide.html#input_char',1,'']]],
8
- ['texture_20loading_5',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
9
- ['than_20xp_6',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
10
- ['the_20api_7',['Introduction to the API',['../intro_guide.html',1,'']]],
11
- ['the_20cmake_20command_20line_20tool_8',['Generating files with the CMake command-line tool',['../compile_guide.html#compile_generate_cli',1,'']]],
12
- ['the_20cmake_20gui_9',['Generating files with the CMake GUI',['../compile_guide.html#compile_generate_gui',1,'']]],
13
- ['the_20glext_20h_20header_10',['The glext.h header',['../context_guide.html#context_glext_header',1,'']]],
14
- ['the_20glfw_20header_11',['Including the GLFW header',['../quick_guide.html#quick_include',1,'']]],
15
- ['the_20glfw_20header_20file_12',['Including the GLFW header file',['../build_guide.html#build_include',1,'']]],
16
- ['the_20library_13',['Compiling the library',['../compile_guide.html#compile_compile',1,'']]],
17
- ['the_20monitor_20work_20area_14',['Query for the monitor work area',['../news.html#workarea_33',1,'']]],
18
- ['the_20opengl_20context_20current_15',['Making the OpenGL context current',['../quick_guide.html#quick_context_current',1,'']]],
19
- ['the_20right_20libraries_16',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
20
- ['the_20scancode_20of_20a_20key_17',['Query for the scancode of a key',['../news.html#key_scancode_33',1,'']]],
21
- ['the_20timer_18',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
22
- ['the_20vulkan_20and_20glfw_20header_20files_19',['Including the Vulkan and GLFW header files',['../vulkan_guide.html#vulkan_include',1,'']]],
23
- ['the_20vulkan_20loader_20',['Linking against the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
24
- ['the_20window_21',['Creating the window',['../vulkan_guide.html#vulkan_window',1,'']]],
25
- ['the_20window_20close_20flag_22',['Checking the window close flag',['../quick_guide.html#quick_window_close',1,'']]],
26
- ['the_20wl_5fshell_20protocol_23',['Support for the wl_shell protocol',['../news.html#wl_shell_33',1,'']]],
27
- ['thread_20safety_24',['Thread safety',['../intro_guide.html#thread_safety',1,'']]],
28
- ['thread_20wake_20up_25',['Main thread wake-up',['../news.html#news_31_emptyevent',1,'']]],
29
- ['threading_20functions_26',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
30
- ['time_20context_20creation_20api_20selection_27',['Run-time context creation API selection',['../news.html#news_32_contextapi',1,'']]],
31
- ['time_20input_28',['Time input',['../input_guide.html#time',1,'']]],
32
- ['time_20version_29',['time version',['../intro_guide.html#intro_version_compile',1,'Compile-time version'],['../intro_guide.html#intro_version_runtime',1,'Run-time version']]],
33
- ['timeout_30',['Wait for events with timeout',['../news.html#news_32_waittimeout',1,'']]],
34
- ['timer_31',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
35
- ['timer_20access_32',['Raw timer access',['../news.html#news_32_timer',1,'']]],
36
- ['title_33',['title',['../news.html#news_30_wndtitle',1,'Initial window title'],['../window_guide.html#window_title',1,'Window title']]],
37
- ['to_203_34',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
38
- ['to_20clipboard_20functions_35',['Window parameter to clipboard functions',['../news.html#clipboard_window_33',1,'']]],
39
- ['to_20server_36',['Empty events on X11 no longer roundtrip to server',['../news.html#emptyevents_33',1,'']]],
40
- ['to_20the_20api_37',['Introduction to the API',['../intro_guide.html',1,'']]],
41
- ['to_20wait_20for_20events_38',['No window required to wait for events',['../news.html#wait_events_33',1,'']]],
42
- ['together_39',['Putting it together',['../quick_guide.html#quick_example',1,'']]],
43
- ['tokens_40',['tokens',['../group__keys.html',1,'Keyboard key tokens'],['../moving_guide.html#moving_renamed_tokens',1,'Renamed tokens']]],
44
- ['tool_41',['Generating files with the CMake command-line tool',['../compile_guide.html#compile_generate_cli',1,'']]],
45
- ['transfer_20limits_42',['X11 clipboard transfer limits',['../news.html#x11_clipboard_33',1,'']]],
46
- ['transparency_43',['Window transparency',['../window_guide.html#window_transparency',1,'']]],
47
- ['transparency_20requires_20dwm_20transparency_44',['Framebuffer transparency requires DWM transparency',['../news.html#caveat_fbtransparency_33',1,'']]],
48
- ['transparent_20windows_20and_20framebuffers_45',['Transparent windows and framebuffers',['../news.html#transparency_33',1,'']]],
49
- ['types_46',['Renamed types',['../moving_guide.html#moving_renamed_types',1,'']]],
50
- ['types_20in_20version_203_203_47',['New types in version 3.3',['../news.html#types_33',1,'']]]
51
- ];
@@ -1,14 +0,0 @@
1
- var searchData=
2
- [
3
- ['undecorated_20windows_0',['Undecorated windows',['../news.html#news_30_undecorated',1,'']]],
4
- ['unfocused_20windows_1',['Initially unfocused windows',['../news.html#news_31_focused',1,'']]],
5
- ['unicode_20support_2',['Unicode support',['../news.html#news_30_unicode',1,'']]],
6
- ['unix_3',['With makefiles and pkg-config on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
7
- ['unix_20like_20systems_4',['unix like systems',['../compile_guide.html#compile_deps_wayland',1,'Dependencies for Wayland on Unix-like systems'],['../compile_guide.html#compile_deps_x11',1,'Dependencies for X11 on Unix-like systems']]],
8
- ['up_5',['Main thread wake-up',['../news.html#news_31_emptyevent',1,'']]],
9
- ['updating_20window_20attributes_6',['Support for updating window attributes',['../news.html#setwindowattrib_33',1,'']]],
10
- ['user_20attention_20request_7',['User attention request',['../news.html#attention_33',1,'']]],
11
- ['user_20pointer_8',['user pointer',['../input_guide.html#joystick_userptr',1,'Joystick user pointer'],['../news.html#news_30_wndptr',1,'Per-window user pointer'],['../monitor_guide.html#monitor_userptr',1,'User pointer'],['../window_guide.html#window_userptr',1,'User pointer']]],
12
- ['user_20pointers_9',['Monitor and joystick user pointers',['../news.html#device_userptr_33',1,'']]],
13
- ['using_20cmake_10',['Using CMake',['../compile_guide.html#compile_cmake',1,'']]]
14
- ];
@@ -1,36 +0,0 @@
1
- var searchData=
2
- [
3
- ['values_0',['values',['../intro_guide.html#init_hints_values',1,'Supported and default values'],['../window_guide.html#window_hints_values',1,'Supported and default values']]],
4
- ['version_1',['version',['../intro_guide.html#intro_version_compile',1,'Compile-time version'],['../intro_guide.html#intro_version_runtime',1,'Run-time version']]],
5
- ['version_203_200_2',['New features in version 3.0',['../news.html#features_30',1,'']]],
6
- ['version_203_201_3',['New features in version 3.1',['../news.html#features_31',1,'']]],
7
- ['version_203_202_4',['New features in version 3.2',['../news.html#features_32',1,'']]],
8
- ['version_203_203_5',['version 3 3',['../news.html#caveats_33',1,'Caveats for version 3.3'],['../news.html#deprecations_33',1,'Deprecations in version 3.3'],['../news.html#constants_33',1,'New constants in version 3.3'],['../news.html#features_33',1,'New features in version 3.3'],['../news.html#functions_33',1,'New functions in version 3.3'],['../news.html#symbols_33',1,'New symbols in version 3.3'],['../news.html#types_33',1,'New types in version 3.3'],['../news.html#news_33',1,'Release notes for version 3.3']]],
9
- ['version_20and_20error_20reference_6',['Initialization, version and error reference',['../group__init.html',1,'']]],
10
- ['version_20compatibility_7',['Version compatibility',['../intro_guide.html#compatibility',1,'']]],
11
- ['version_20management_8',['Version management',['../intro_guide.html#intro_version',1,'']]],
12
- ['version_20string_9',['Version string',['../intro_guide.html#intro_version_string',1,'']]],
13
- ['versions_20of_20windows_20older_20than_20xp_10',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
14
- ['via_20moltenvk_11',['Support for Vulkan on macOS via MoltenVK',['../news.html#moltenvk_33',1,'']]],
15
- ['via_20sdl_5fgamecontrollerdb_12',['Gamepad input via SDL_GameControllerDB',['../news.html#gamepad_33',1,'']]],
16
- ['video_20mode_20enumeration_13',['Video mode enumeration',['../moving_guide.html#moving_video_modes',1,'']]],
17
- ['video_20modes_14',['Video modes',['../monitor_guide.html#monitor_modes',1,'']]],
18
- ['virtual_20position_15',['Virtual position',['../monitor_guide.html#monitor_pos',1,'']]],
19
- ['visibility_16',['Window visibility',['../window_guide.html#window_hide',1,'']]],
20
- ['visual_20c_20on_20windows_17',['With MinGW or Visual C++ on Windows',['../build_guide.html#build_link_win32',1,'']]],
21
- ['vulkan_18',['Support for Vulkan',['../news.html#news_32_vulkan',1,'']]],
22
- ['vulkan_20and_20glfw_20header_20files_19',['Including the Vulkan and GLFW header files',['../vulkan_guide.html#vulkan_include',1,'']]],
23
- ['vulkan_20extensions_20',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
24
- ['vulkan_20function_20pointers_21',['Querying Vulkan function pointers',['../vulkan_guide.html#vulkan_proc',1,'']]],
25
- ['vulkan_20guide_22',['Vulkan guide',['../vulkan_guide.html',1,'']]],
26
- ['vulkan_20loader_23',['Linking against the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
27
- ['vulkan_20loader_20and_20api_24',['Vulkan loader and API',['../compat_guide.html#compat_vulkan',1,'']]],
28
- ['vulkan_20on_20macos_20via_20moltenvk_25',['Support for Vulkan on macOS via MoltenVK',['../news.html#moltenvk_33',1,'']]],
29
- ['vulkan_20presentation_20support_26',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
30
- ['vulkan_20sdk_20dependency_27',['LunarG Vulkan SDK dependency',['../news.html#vulkan_sdk_33',1,'']]],
31
- ['vulkan_20support_28',['Querying for Vulkan support',['../vulkan_guide.html#vulkan_support',1,'']]],
32
- ['vulkan_20support_20reference_29',['Vulkan support reference',['../group__vulkan.html',1,'']]],
33
- ['vulkan_20window_20surface_30',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
34
- ['vulkan_20wsi_20extensions_31',['Vulkan WSI extensions',['../compat_guide.html#compat_wsi',1,'']]],
35
- ['vulkan_2edox_32',['vulkan.dox',['../vulkan_8dox.html',1,'']]]
36
- ];
@@ -1,98 +0,0 @@
1
- var searchData=
2
- [
3
- ['wait_20for_20events_0',['No window required to wait for events',['../news.html#wait_events_33',1,'']]],
4
- ['wait_20for_20events_20with_20timeout_1',['Wait for events with timeout',['../news.html#news_32_waittimeout',1,'']]],
5
- ['wake_20up_2',['Main thread wake-up',['../news.html#news_31_emptyevent',1,'']]],
6
- ['wayland_20libdecor_20decorations_3',['Wayland libdecor decorations',['../news.html#wayland_libdecor_33',1,'']]],
7
- ['wayland_20on_20unix_20like_20systems_4',['Dependencies for Wayland on Unix-like systems',['../compile_guide.html#compile_deps_wayland',1,'']]],
8
- ['wayland_20protocols_20and_20ipc_20standards_5',['Wayland protocols and IPC standards',['../compat_guide.html#compat_wayland',1,'']]],
9
- ['wayland_20specific_20cmake_20options_6',['Wayland specific CMake options',['../compile_guide.html#compile_options_wayland',1,'']]],
10
- ['wayland_20specific_20init_20hints_7',['Wayland specific init hints',['../intro_guide.html#init_hints_wayland',1,'']]],
11
- ['wayland_20support_8',['(Experimental) Wayland support',['../news.html#news_31_wayland',1,'']]],
12
- ['wayland_20systems_9',['Frambuffer may lack alpha channel on older Wayland systems',['../news.html#wayland_alpha_34',1,'']]],
13
- ['wgl_20extensions_10',['WGL extensions',['../compat_guide.html#compat_wgl',1,'']]],
14
- ['wheel_20position_20replaced_20by_20scroll_20offsets_11',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
15
- ['wide_20hotkeys_12',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
16
- ['width_13',['width',['../struct_g_l_f_wimage.html#af6a71cc999fe6d3aea31dd7e9687d835',1,'GLFWimage::width'],['../struct_g_l_f_wvidmode.html#a698dcb200562051a7249cb6ae154c71d',1,'GLFWvidmode::width']]],
17
- ['win32_20mbcs_20support_14',['Win32 MBCS support',['../moving_guide.html#moving_mbcs',1,'']]],
18
- ['window_15',['Creating the window',['../vulkan_guide.html#vulkan_window',1,'']]],
19
- ['window_20and_20context_16',['Creating a window and context',['../quick_guide.html#quick_create_window',1,'']]],
20
- ['window_20and_20framebuffer_20sizes_17',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
21
- ['window_20attention_20request_18',['Window attention request',['../window_guide.html#window_attention',1,'']]],
22
- ['window_20attribute_19',['Mouse cursor hover window attribute',['../news.html#cursor_hover_33',1,'']]],
23
- ['window_20attributes_20',['window attributes',['../news.html#setwindowattrib_33',1,'Support for updating window attributes'],['../window_guide.html#window_attribs',1,'Window attributes']]],
24
- ['window_20attributes_20and_20cursor_20position_21',['Direct access for window attributes and cursor position',['../news.html#news_31_direct',1,'']]],
25
- ['window_20close_20flag_22',['Checking the window close flag',['../quick_guide.html#quick_window_close',1,'']]],
26
- ['window_20closing_20and_20close_20flag_23',['Window closing and close flag',['../window_guide.html#window_close',1,'']]],
27
- ['window_20closing_20changes_24',['Window closing changes',['../moving_guide.html#moving_window_close',1,'']]],
28
- ['window_20content_20scale_25',['Window content scale',['../window_guide.html#window_scale',1,'']]],
29
- ['window_20creation_26',['Window creation',['../window_guide.html#window_creation',1,'']]],
30
- ['window_20creation_20hints_27',['Window creation hints',['../window_guide.html#window_hints',1,'']]],
31
- ['window_20damage_20and_20refresh_28',['Window damage and refresh',['../window_guide.html#window_refresh',1,'']]],
32
- ['window_20destruction_29',['Window destruction',['../window_guide.html#window_destruction',1,'']]],
33
- ['window_20event_20processing_30',['Window event processing',['../window_guide.html#window_events',1,'']]],
34
- ['window_20focus_20callback_31',['Window focus callback',['../news.html#news_30_focusfun',1,'']]],
35
- ['window_20frame_20size_20query_32',['Window frame size query',['../news.html#news_31_framesize',1,'']]],
36
- ['window_20guide_33',['Window guide',['../window_guide.html',1,'']]],
37
- ['window_20handle_20parameters_34',['Window handle parameters',['../moving_guide.html#moving_window_handles',1,'']]],
38
- ['window_20hint_35',['Cursor centering window hint',['../news.html#center_cursor_33',1,'']]],
39
- ['window_20hint_20and_20attribute_20for_20input_20focus_20on_20show_36',['Window hint and attribute for input focus on show',['../news.html#focusonshow_33',1,'']]],
40
- ['window_20hints_37',['window hints',['../window_guide.html#window_hints_osx',1,'macOS specific window hints'],['../moving_guide.html#moving_hints',1,'Persistent window hints'],['../window_guide.html#window_hints_x11',1,'X11 specific window hints']]],
41
- ['window_20icon_38',['Window icon',['../window_guide.html#window_icon',1,'']]],
42
- ['window_20icon_20support_39',['Window icon support',['../news.html#news_32_icon',1,'']]],
43
- ['window_20iconification_40',['Window iconification',['../window_guide.html#window_iconify',1,'']]],
44
- ['window_20iconification_20callback_41',['Window iconification callback',['../news.html#news_30_iconifyfun',1,'']]],
45
- ['window_20input_20focus_42',['Window input focus',['../window_guide.html#window_focus',1,'']]],
46
- ['window_20input_20focus_20control_43',['Window input focus control',['../news.html#news_32_focus',1,'']]],
47
- ['window_20maximization_44',['Window maximization',['../window_guide.html#window_maximize',1,'']]],
48
- ['window_20maximization_20callback_45',['Window maximization callback',['../news.html#maximize_33',1,'']]],
49
- ['window_20maxmimization_20support_46',['Window maxmimization support',['../news.html#news_32_maximize',1,'']]],
50
- ['window_20mode_20switching_47',['Window mode switching',['../news.html#news_32_setwindowmonitor',1,'']]],
51
- ['window_20monitor_48',['Window monitor',['../window_guide.html#window_monitor',1,'']]],
52
- ['window_20objects_49',['Window objects',['../window_guide.html#window_object',1,'']]],
53
- ['window_20parameter_20to_20clipboard_20functions_50',['Window parameter to clipboard functions',['../news.html#clipboard_window_33',1,'']]],
54
- ['window_20position_51',['Window position',['../window_guide.html#window_pos',1,'']]],
55
- ['window_20position_20callback_52',['Window position callback',['../news.html#news_30_wndposfun',1,'']]],
56
- ['window_20position_20query_53',['Window position query',['../news.html#news_30_wndpos',1,'']]],
57
- ['window_20properties_20and_20events_54',['Window properties and events',['../window_guide.html#window_properties',1,'']]],
58
- ['window_20reference_55',['Window reference',['../group__window.html',1,'']]],
59
- ['window_20related_20attributes_56',['Window related attributes',['../window_guide.html#window_attribs_wnd',1,'']]],
60
- ['window_20related_20hints_57',['Window related hints',['../window_guide.html#window_hints_wnd',1,'']]],
61
- ['window_20required_20to_20wait_20for_20events_58',['No window required to wait for events',['../news.html#wait_events_33',1,'']]],
62
- ['window_20size_59',['Window size',['../window_guide.html#window_size',1,'']]],
63
- ['window_20size_20limit_20support_60',['Window size limit support',['../news.html#news_32_sizelimits',1,'']]],
64
- ['window_20size_20limits_61',['Window size limits',['../window_guide.html#window_sizelimits',1,'']]],
65
- ['window_20support_62',['Multi-window support',['../news.html#news_30_multiwnd',1,'']]],
66
- ['window_20surface_63',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
67
- ['window_20title_64',['window title',['../news.html#news_30_wndtitle',1,'Initial window title'],['../window_guide.html#window_title',1,'Window title']]],
68
- ['window_20transparency_65',['Window transparency',['../window_guide.html#window_transparency',1,'']]],
69
- ['window_20user_20pointer_66',['Per-window user pointer',['../news.html#news_30_wndptr',1,'']]],
70
- ['window_20visibility_67',['Window visibility',['../window_guide.html#window_hide',1,'']]],
71
- ['window_2edox_68',['window.dox',['../window_8dox.html',1,'']]],
72
- ['windowed_20full_20screen_20windows_69',['"Windowed full screen" windows',['../window_guide.html#window_windowed_full_screen',1,'']]],
73
- ['windows_70',['windows',['../window_guide.html#window_windowed_full_screen',1,'"Windowed full screen" windows'],['../news.html#news_32_noapi',1,'Context-less windows'],['../news.html#news_31_floating',1,'Floating windows'],['../window_guide.html#window_full_screen',1,'Full screen windows'],['../news.html#news_30_hidden',1,'Hidden windows'],['../news.html#news_31_focused',1,'Initially unfocused windows'],['../news.html#news_30_undecorated',1,'Undecorated windows'],['../build_guide.html#build_link_win32',1,'With MinGW or Visual C++ on Windows']]],
74
- ['windows_20and_20framebuffers_71',['Transparent windows and framebuffers',['../news.html#transparency_33',1,'']]],
75
- ['windows_20older_20than_20xp_72',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
76
- ['windows_20specific_20cmake_20options_73',['Windows specific CMake options',['../compile_guide.html#compile_options_win32',1,'']]],
77
- ['windows_20without_20contexts_74',['Windows without contexts',['../context_guide.html#context_less',1,'']]],
78
- ['windows_20xinput_20deadzone_20removed_75',['Windows XInput deadzone removed',['../news.html#xinput_deadzone_33',1,'']]],
79
- ['with_20a_20loader_20library_76',['Loading extension with a loader library',['../context_guide.html#context_glext_auto',1,'']]],
80
- ['with_20cmake_77',['Generating build files with CMake',['../compile_guide.html#compile_generate',1,'']]],
81
- ['with_20cmake_20and_20glfw_20source_78',['With CMake and GLFW source',['../build_guide.html#build_link_cmake_source',1,'']]],
82
- ['with_20cmake_20and_20installed_20glfw_20binaries_79',['With CMake and installed GLFW binaries',['../build_guide.html#build_link_cmake_package',1,'']]],
83
- ['with_20cmake_20and_20mingw_80',['Cross-compilation with CMake and MinGW',['../compile_guide.html#compile_mingw_cross',1,'']]],
84
- ['with_20command_20line_20on_20macos_81',['With command-line on macOS',['../build_guide.html#build_link_osx',1,'']]],
85
- ['with_20makefiles_20and_20pkg_20config_20on_20unix_82',['With makefiles and pkg-config on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
86
- ['with_20mingw_20or_20visual_20c_20on_20windows_83',['With MinGW or Visual C++ on Windows',['../build_guide.html#build_link_win32',1,'']]],
87
- ['with_20modifiers_20callback_84',['with modifiers callback',['../news.html#charmods_callback_33',1,'Character with modifiers callback'],['../news.html#news_31_charmods',1,'Character with modifiers callback']]],
88
- ['with_20opengl_85',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
89
- ['with_20the_20cmake_20command_20line_20tool_86',['Generating files with the CMake command-line tool',['../compile_guide.html#compile_generate_cli',1,'']]],
90
- ['with_20the_20cmake_20gui_87',['Generating files with the CMake GUI',['../compile_guide.html#compile_generate_gui',1,'']]],
91
- ['with_20the_20right_20libraries_88',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
92
- ['with_20timeout_89',['Wait for events with timeout',['../news.html#news_32_waittimeout',1,'']]],
93
- ['with_20xcode_20on_20macos_90',['With Xcode on macOS',['../build_guide.html#build_link_xcode',1,'']]],
94
- ['without_20contexts_91',['Windows without contexts',['../context_guide.html#context_less',1,'']]],
95
- ['wl_5fshell_20protocol_92',['Support for the wl_shell protocol',['../news.html#wl_shell_33',1,'']]],
96
- ['work_20area_93',['work area',['../news.html#workarea_33',1,'Query for the monitor work area'],['../monitor_guide.html#monitor_workarea',1,'Work area']]],
97
- ['wsi_20extensions_94',['Vulkan WSI extensions',['../compat_guide.html#compat_wsi',1,'']]]
98
- ];
@@ -1,12 +0,0 @@
1
- var searchData=
2
- [
3
- ['x11_20clipboard_20transfer_20limits_0',['X11 clipboard transfer limits',['../news.html#x11_clipboard_33',1,'']]],
4
- ['x11_20extension_20libraries_20are_20loaded_20dynamically_1',['X11 extension libraries are loaded dynamically',['../news.html#x11_linking_33',1,'']]],
5
- ['x11_20extensions_20protocols_20and_20ipc_20standards_2',['X11 extensions, protocols and IPC standards',['../compat_guide.html#compat_x11',1,'']]],
6
- ['x11_20no_20longer_20roundtrip_20to_20server_3',['Empty events on X11 no longer roundtrip to server',['../news.html#emptyevents_33',1,'']]],
7
- ['x11_20on_20unix_20like_20systems_4',['Dependencies for X11 on Unix-like systems',['../compile_guide.html#compile_deps_x11',1,'']]],
8
- ['x11_20specific_20window_20hints_5',['X11 specific window hints',['../window_guide.html#window_hints_x11',1,'']]],
9
- ['xcode_20on_20macos_6',['With Xcode on macOS',['../build_guide.html#build_link_xcode',1,'']]],
10
- ['xinput_20deadzone_20removed_7',['Windows XInput deadzone removed',['../news.html#xinput_deadzone_33',1,'']]],
11
- ['xp_8',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]]
12
- ];
@@ -1,6 +0,0 @@
1
- var searchData=
2
- [
3
- ['2_0',['2',['../news.html#features_32',1,'New features in version 3.2'],['../news.html#news_32',1,'Release notes for 3.2']]],
4
- ['2_20to_203_1',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
5
- ['256_20may_20be_20rejected_2',['Gamma ramp size of 256 may be rejected',['../news.html#gamma_ramp_size_33',1,'']]]
6
- ];
@@ -1,9 +0,0 @@
1
- var searchData=
2
- [
3
- ['3_0',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
4
- ['3_200_1',['3 0',['../news.html#features_30',1,'New features in version 3.0'],['../news.html#news_30',1,'Release notes for 3.0']]],
5
- ['3_200_20or_20later_20is_20required_2',['CMake 3.0 or later is required',['../news.html#cmake_version_33',1,'']]],
6
- ['3_201_3',['3 1',['../news.html#features_31',1,'New features in version 3.1'],['../news.html#news_31',1,'Release notes for 3.1']]],
7
- ['3_202_4',['3 2',['../news.html#features_32',1,'New features in version 3.2'],['../news.html#news_32',1,'Release notes for 3.2']]],
8
- ['3_203_5',['3 3',['../news.html#caveats_33',1,'Caveats for version 3.3'],['../news.html#deprecations_33',1,'Deprecations in version 3.3'],['../news.html#constants_33',1,'New constants in version 3.3'],['../news.html#features_33',1,'New features in version 3.3'],['../news.html#functions_33',1,'New functions in version 3.3'],['../news.html#symbols_33',1,'New symbols in version 3.3'],['../news.html#types_33',1,'New types in version 3.3'],['../news.html#news_33',1,'Release notes for version 3.3'],['../news.html#removals_33',1,'Removals in 3.3']]]
9
- ];
@@ -1,57 +0,0 @@
1
- var searchData=
2
- [
3
- ['a_20key_0',['Query for the scancode of a key',['../news.html#key_scancode_33',1,'']]],
4
- ['a_20loader_20library_1',['Loading extension with a loader library',['../context_guide.html#context_glext_auto',1,'']]],
5
- ['a_20vulkan_20window_20surface_2',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
6
- ['a_20window_20and_20context_3',['Creating a window and context',['../quick_guide.html#quick_create_window',1,'']]],
7
- ['access_4',['access',['../group__native.html',1,'Native access'],['../news.html#news_32_timer',1,'Raw timer access']]],
8
- ['access_20for_20window_20attributes_20and_20cursor_20position_5',['Direct access for window attributes and cursor position',['../news.html#news_31_direct',1,'']]],
9
- ['action_6',['Key repeat action',['../moving_guide.html#moving_repeat',1,'']]],
10
- ['actions_7',['Removal of character actions',['../moving_guide.html#moving_char_up',1,'']]],
11
- ['against_20the_20vulkan_20loader_8',['Linking against the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
12
- ['alpha_20channel_20on_20older_20wayland_20systems_9',['Frambuffer may lack alpha channel on older Wayland systems',['../news.html#wayland_alpha_34',1,'']]],
13
- ['an_20error_20callback_10',['Setting an error callback',['../quick_guide.html#quick_capture_error',1,'']]],
14
- ['and_20api_11',['Vulkan loader and API',['../compat_guide.html#compat_vulkan',1,'']]],
15
- ['and_20attribute_20for_20input_20focus_20on_20show_12',['Window hint and attribute for input focus on show',['../news.html#focusonshow_33',1,'']]],
16
- ['and_20close_20flag_13',['Window closing and close flag',['../window_guide.html#window_close',1,'']]],
17
- ['and_20context_14',['Creating a window and context',['../quick_guide.html#quick_create_window',1,'']]],
18
- ['and_20cursor_20position_15',['Direct access for window attributes and cursor position',['../news.html#news_31_direct',1,'']]],
19
- ['and_20default_20values_16',['and default values',['../intro_guide.html#init_hints_values',1,'Supported and default values'],['../window_guide.html#window_hints_values',1,'Supported and default values']]],
20
- ['and_20error_20reference_17',['Initialization, version and error reference',['../group__init.html',1,'']]],
21
- ['and_20events_18',['Window properties and events',['../window_guide.html#window_properties',1,'']]],
22
- ['and_20framebuffer_20sizes_19',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
23
- ['and_20framebuffers_20',['Transparent windows and framebuffers',['../news.html#transparency_33',1,'']]],
24
- ['and_20glfw_20header_20files_21',['Including the Vulkan and GLFW header files',['../vulkan_guide.html#vulkan_include',1,'']]],
25
- ['and_20glfw_20source_22',['With CMake and GLFW source',['../build_guide.html#build_link_cmake_source',1,'']]],
26
- ['and_20header_20file_23',['Renamed library and header file',['../moving_guide.html#moving_renamed_files',1,'']]],
27
- ['and_20installed_20glfw_20binaries_24',['With CMake and installed GLFW binaries',['../build_guide.html#build_link_cmake_package',1,'']]],
28
- ['and_20ipc_20standards_25',['and ipc standards',['../compat_guide.html#compat_wayland',1,'Wayland protocols and IPC standards'],['../compat_guide.html#compat_x11',1,'X11 extensions, protocols and IPC standards']]],
29
- ['and_20joystick_20user_20pointers_26',['Monitor and joystick user pointers',['../news.html#device_userptr_33',1,'']]],
30
- ['and_20limitations_27',['Guarantees and limitations',['../intro_guide.html#guarantees_limitations',1,'']]],
31
- ['and_20macros_28',['macOS specific CMake options and macros',['../news.html#macos_options_33',1,'']]],
32
- ['and_20mingw_29',['Cross-compilation with CMake and MinGW',['../compile_guide.html#compile_mingw_cross',1,'']]],
33
- ['and_20opengl_20es_20extensions_30',['OpenGL and OpenGL ES extensions',['../context_guide.html#context_glext',1,'']]],
34
- ['and_20output_31',['Clipboard input and output',['../input_guide.html#clipboard',1,'']]],
35
- ['and_20pkg_20config_20on_20unix_32',['With makefiles and pkg-config on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
36
- ['and_20refresh_33',['Window damage and refresh',['../window_guide.html#window_refresh',1,'']]],
37
- ['and_20removed_20features_34',['Changed and removed features',['../moving_guide.html#moving_removed',1,'']]],
38
- ['and_20soft_20constraints_35',['Hard and soft constraints',['../window_guide.html#window_hints_hard',1,'']]],
39
- ['and_20terminating_20glfw_36',['Initializing and terminating GLFW',['../quick_guide.html#quick_init_term',1,'']]],
40
- ['and_20termination_37',['Initialization and termination',['../intro_guide.html#intro_init',1,'']]],
41
- ['and_20texture_20loading_38',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
42
- ['api_39',['api',['../intro_guide.html',1,'Introduction to the API'],['../compat_guide.html#compat_vulkan',1,'Vulkan loader and API']]],
43
- ['api_20selection_40',['Run-time context creation API selection',['../news.html#news_32_contextapi',1,'']]],
44
- ['applications_41',['Building applications',['../build_guide.html',1,'']]],
45
- ['are_20loaded_20dynamically_42',['X11 extension libraries are loaded dynamically',['../news.html#x11_linking_33',1,'']]],
46
- ['area_43',['area',['../news.html#workarea_33',1,'Query for the monitor work area'],['../monitor_guide.html#monitor_workarea',1,'Work area']]],
47
- ['attention_20request_44',['attention request',['../news.html#attention_33',1,'User attention request'],['../window_guide.html#window_attention',1,'Window attention request']]],
48
- ['attribute_45',['Mouse cursor hover window attribute',['../news.html#cursor_hover_33',1,'']]],
49
- ['attribute_20for_20input_20focus_20on_20show_46',['Window hint and attribute for input focus on show',['../news.html#focusonshow_33',1,'']]],
50
- ['attributes_47',['attributes',['../window_guide.html#window_attribs_ctx',1,'Context related attributes'],['../window_guide.html#window_attribs_fb',1,'Framebuffer related attributes'],['../news.html#setwindowattrib_33',1,'Support for updating window attributes'],['../window_guide.html#window_attribs',1,'Window attributes'],['../window_guide.html#window_attribs_wnd',1,'Window related attributes']]],
51
- ['attributes_20and_20cursor_20position_48',['Direct access for window attributes and cursor position',['../news.html#news_31_direct',1,'']]],
52
- ['automatic_20event_20polling_49',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
53
- ['automatic_20termination_50',['Automatic termination',['../moving_guide.html#moving_terminate',1,'']]],
54
- ['aware_20rendering_51',['Content scale queries for DPI-aware rendering',['../news.html#content_scale_33',1,'']]],
55
- ['axes_52',['axes',['../struct_g_l_f_wgamepadstate.html#a8b2c8939b1d31458de5359998375c189',1,'GLFWgamepadstate::axes'],['../group__gamepad__axes.html',1,'Gamepad axes']]],
56
- ['axis_20states_53',['Joystick axis states',['../input_guide.html#joystick_axis',1,'']]]
57
- ];