ruby_rpg 0.0.5 → 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 (584) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -21
  3. data/bin/build.bash +13 -13
  4. data/bin/import +54 -44
  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/autoloader.rb +11 -11
  19. data/lib/engine/camera.rb +12 -12
  20. data/lib/engine/component.rb +65 -63
  21. data/lib/engine/components/audio_source.rb +43 -41
  22. data/lib/engine/components/direction_light.rb +102 -23
  23. data/lib/engine/components/orthographic_camera.rb +60 -54
  24. data/lib/engine/components/perspective_camera.rb +76 -53
  25. data/lib/engine/components/point_light.rb +80 -24
  26. data/lib/engine/components/renderers/font_renderer.rb +19 -0
  27. data/lib/engine/components/renderers/font_renderer_base.rb +134 -0
  28. data/lib/engine/components/renderers/mesh_renderer.rb +41 -0
  29. data/lib/engine/components/renderers/sprite_renderer.rb +46 -0
  30. data/lib/engine/components/spot_light.rb +90 -0
  31. data/lib/engine/components/sprite_animator.rb +42 -0
  32. data/lib/engine/components/ui/flex/layout.rb +94 -0
  33. data/lib/engine/components/ui/flex/pack_layout.rb +65 -0
  34. data/lib/engine/components/ui/flex/stretch_layout.rb +52 -0
  35. data/lib/engine/components/ui/flex.rb +60 -0
  36. data/lib/engine/components/ui/font_renderer.rb +57 -0
  37. data/lib/engine/components/ui/rect.rb +117 -0
  38. data/lib/engine/components/ui/sprite_clickbox.rb +47 -0
  39. data/lib/engine/components/ui/sprite_renderer.rb +117 -0
  40. data/lib/engine/compute_shader.rb +14 -93
  41. data/lib/engine/compute_texture.rb +13 -0
  42. data/lib/engine/cursor.rb +43 -43
  43. data/lib/engine/debugging.rb +41 -41
  44. data/lib/engine/engine.rb +127 -131
  45. data/lib/engine/font.rb +99 -74
  46. data/lib/engine/game_object.rb +306 -234
  47. data/lib/engine/gl.rb +439 -0
  48. data/lib/engine/glfw.rb +151 -0
  49. data/lib/engine/importers/font_importer.rb +69 -69
  50. data/lib/engine/importers/obj_file.rb +244 -244
  51. data/lib/engine/importers/obj_importer.rb +33 -33
  52. data/lib/engine/input.rb +212 -105
  53. data/lib/engine/material.rb +214 -79
  54. data/lib/engine/matrix_helpers.rb +38 -0
  55. data/lib/engine/mesh.rb +68 -43
  56. data/lib/engine/metal/compute_shader.rb +118 -0
  57. data/lib/engine/metal/compute_texture.rb +176 -0
  58. data/lib/engine/metal/device.rb +98 -0
  59. data/lib/engine/metal/metal_bindings.rb +126 -0
  60. data/lib/engine/opengl/compute_shader.rb +77 -0
  61. data/lib/engine/opengl/compute_texture.rb +31 -0
  62. data/lib/engine/path.rb +92 -92
  63. data/lib/engine/physics/collision.rb +12 -12
  64. data/lib/engine/physics/components/cube_collider.rb +6 -6
  65. data/lib/engine/physics/components/rigidbody.rb +106 -103
  66. data/lib/engine/physics/components/sphere_collider.rb +103 -93
  67. data/lib/engine/physics/physics_resolver.rb +49 -37
  68. data/lib/engine/polygon_mesh.rb +45 -45
  69. data/lib/engine/quaternion.rb +234 -234
  70. data/lib/engine/rendering/cubemap_shadow_map_array.rb +77 -0
  71. data/lib/engine/rendering/gpu_timer.rb +68 -0
  72. data/lib/engine/rendering/instance_renderer.rb +232 -153
  73. data/lib/engine/rendering/post_processing/bloom_effect.rb +87 -0
  74. data/lib/engine/rendering/post_processing/depth_debug_effect.rb +17 -0
  75. data/lib/engine/rendering/post_processing/depth_of_field_effect.rb +52 -0
  76. data/lib/engine/rendering/post_processing/effect.rb +11 -0
  77. data/lib/engine/rendering/post_processing/post_processing_effect.rb +86 -0
  78. data/lib/engine/rendering/post_processing/single_pass_effect.rb +19 -0
  79. data/lib/engine/rendering/post_processing/ssao_effect.rb +182 -0
  80. data/lib/engine/rendering/post_processing/ssr_effect.rb +89 -0
  81. data/lib/engine/rendering/post_processing/tint_effect.rb +18 -0
  82. data/lib/engine/rendering/render_pipeline.rb +267 -35
  83. data/lib/engine/rendering/render_texture.rb +118 -0
  84. data/lib/engine/rendering/screen_quad.rb +64 -0
  85. data/lib/engine/rendering/shadow_map_array.rb +72 -0
  86. data/lib/engine/rendering/skybox_cubemap.rb +119 -0
  87. data/lib/engine/rendering/skybox_renderer.rb +64 -0
  88. data/lib/engine/rendering/ui/stencil_manager.rb +69 -0
  89. data/lib/engine/screenshoter.rb +34 -34
  90. data/lib/engine/serialization/graph_serializer.rb +74 -0
  91. data/lib/engine/serialization/object_serializer.rb +98 -0
  92. data/lib/engine/serialization/serializable.rb +78 -0
  93. data/lib/engine/serialization/yaml_persistence.rb +45 -0
  94. data/lib/engine/shader.rb +215 -119
  95. data/lib/engine/shaders/colour_frag.glsl +16 -8
  96. data/lib/engine/shaders/colour_vertex.glsl +20 -13
  97. data/lib/engine/shaders/fullscreen_frag.glsl +11 -0
  98. data/lib/engine/shaders/fullscreen_vertex.glsl +12 -0
  99. data/lib/engine/shaders/instanced_sprite_frag.glsl +21 -0
  100. data/lib/engine/shaders/{skybox_vert.glsl → instanced_sprite_vertex.glsl} +15 -14
  101. data/lib/engine/shaders/lighting/directional_light.glsl +49 -0
  102. data/lib/engine/shaders/lighting/lighting.glsl +33 -0
  103. data/lib/engine/shaders/lighting/lighting_common.glsl +13 -0
  104. data/lib/engine/shaders/lighting/point_light.glsl +46 -0
  105. data/lib/engine/shaders/lighting/spot_light.glsl +80 -0
  106. data/lib/engine/shaders/mesh_frag.glsl +53 -102
  107. data/lib/engine/shaders/mesh_vertex.glsl +25 -25
  108. data/lib/engine/shaders/point_shadow_frag.glsl +12 -0
  109. data/lib/engine/shaders/point_shadow_vertex.glsl +15 -0
  110. data/lib/engine/shaders/post_process/bloom_blur_frag.glsl +25 -0
  111. data/lib/engine/shaders/post_process/bloom_combine_frag.glsl +19 -0
  112. data/lib/engine/shaders/post_process/bloom_threshold_frag.glsl +19 -0
  113. data/lib/engine/shaders/post_process/debug_normals_frag.glsl +21 -0
  114. data/lib/engine/shaders/post_process/depth_debug_frag.glsl +17 -0
  115. data/lib/engine/shaders/post_process/dof_blur_frag.glsl +52 -0
  116. data/lib/engine/shaders/post_process/skybox_frag.glsl +29 -0
  117. data/lib/engine/shaders/post_process/ssao/blur_frag.glsl +50 -0
  118. data/lib/engine/shaders/post_process/ssao/combine_frag.glsl +15 -0
  119. data/lib/engine/shaders/post_process/ssao/frag.glsl +99 -0
  120. data/lib/engine/shaders/post_process/ssr/combine_frag.glsl +16 -0
  121. data/lib/engine/shaders/post_process/ssr/frag.glsl +118 -0
  122. data/lib/engine/shaders/post_process/tint_frag.glsl +14 -0
  123. data/lib/engine/shaders/shadow_frag.glsl +6 -0
  124. data/lib/engine/shaders/shadow_vertex.glsl +11 -0
  125. data/lib/engine/shaders/skybox_cubemap_frag.glsl +46 -0
  126. data/lib/engine/shaders/sprite_frag.glsl +17 -17
  127. data/lib/engine/shaders/sprite_vertex.glsl +15 -15
  128. data/lib/engine/shaders/text_frag.glsl +15 -15
  129. data/lib/engine/shaders/text_vertex.glsl +31 -31
  130. data/lib/engine/shaders/ui_sprite_frag.glsl +15 -15
  131. data/lib/engine/shaders/ui_sprite_vertex.glsl +15 -15
  132. data/lib/engine/shaders/vertex_lit_frag.glsl +33 -89
  133. data/lib/engine/shaders/vertex_lit_vertex.glsl +28 -28
  134. data/lib/engine/standard_meshes/quad_mesh.rb +26 -0
  135. data/lib/engine/standard_objects/cube.rb +23 -0
  136. data/lib/engine/standard_objects/default_material.rb +20 -0
  137. data/lib/engine/standard_objects/plane.rb +23 -0
  138. data/lib/engine/standard_objects/sphere.rb +23 -0
  139. data/lib/engine/tangent_calculator.rb +42 -42
  140. data/lib/engine/texture.rb +62 -53
  141. data/lib/engine/ui/rect.rb +16 -0
  142. data/lib/engine/video_mode.rb +37 -37
  143. data/lib/engine/window.rb +126 -126
  144. data/lib/ruby_rpg.rb +116 -58
  145. data/vendor/glew-2.2.0-win32/LICENSE.txt +73 -0
  146. data/vendor/glew-2.2.0-win32/bin/Release/x64/glew32.dll +0 -0
  147. data/vendor/glew-2.2.0-win32/include/GL/glew.h +26427 -0
  148. data/vendor/glew-2.2.0-win32/lib/Release/x64/glew32.lib +0 -0
  149. data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.3.9.bin.MACOS}/lib-arm64/libglfw.3.dylib +0 -0
  150. data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.4.bin.WIN64}/LICENSE.md +23 -23
  151. metadata +122 -463
  152. data/glfw-3.3.9.bin.MACOS/README.md +0 -5
  153. data/glfw-3.3.9.bin.MACOS/docs/html/bc_s.png +0 -0
  154. data/glfw-3.3.9.bin.MACOS/docs/html/bc_sd.png +0 -0
  155. data/glfw-3.3.9.bin.MACOS/docs/html/build_8dox.html +0 -81
  156. data/glfw-3.3.9.bin.MACOS/docs/html/build_guide.html +0 -199
  157. data/glfw-3.3.9.bin.MACOS/docs/html/closed.png +0 -0
  158. data/glfw-3.3.9.bin.MACOS/docs/html/compat_8dox.html +0 -81
  159. data/glfw-3.3.9.bin.MACOS/docs/html/compat_guide.html +0 -153
  160. data/glfw-3.3.9.bin.MACOS/docs/html/compile_8dox.html +0 -81
  161. data/glfw-3.3.9.bin.MACOS/docs/html/compile_guide.html +0 -223
  162. data/glfw-3.3.9.bin.MACOS/docs/html/context_8dox.html +0 -81
  163. data/glfw-3.3.9.bin.MACOS/docs/html/context_guide.html +0 -259
  164. data/glfw-3.3.9.bin.MACOS/docs/html/deprecated.html +0 -88
  165. data/glfw-3.3.9.bin.MACOS/docs/html/dir_08423ce7729c4554356a7de7171ba263.html +0 -85
  166. data/glfw-3.3.9.bin.MACOS/docs/html/dir_2dcebcdf14b42e92a6ed85c61bda6b9d.html +0 -93
  167. data/glfw-3.3.9.bin.MACOS/docs/html/dir_62ce056722ee97c199075aa1d6eca309.html +0 -95
  168. data/glfw-3.3.9.bin.MACOS/docs/html/dir_dddf4cf62655095a666cf715de3a31a2.html +0 -91
  169. data/glfw-3.3.9.bin.MACOS/docs/html/doc.svg +0 -12
  170. data/glfw-3.3.9.bin.MACOS/docs/html/docd.svg +0 -12
  171. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.css +0 -1685
  172. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.svg +0 -28
  173. data/glfw-3.3.9.bin.MACOS/docs/html/dynsections.js +0 -192
  174. data/glfw-3.3.9.bin.MACOS/docs/html/extra.css +0 -1
  175. data/glfw-3.3.9.bin.MACOS/docs/html/files.html +0 -91
  176. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosed.svg +0 -11
  177. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosedd.svg +0 -11
  178. data/glfw-3.3.9.bin.MACOS/docs/html/folderopen.svg +0 -17
  179. data/glfw-3.3.9.bin.MACOS/docs/html/folderopend.svg +0 -12
  180. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h.html +0 -1661
  181. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h_source.html +0 -1175
  182. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h.html +0 -167
  183. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h_source.html +0 -303
  184. data/glfw-3.3.9.bin.MACOS/docs/html/group__buttons.html +0 -282
  185. data/glfw-3.3.9.bin.MACOS/docs/html/group__context.html +0 -304
  186. data/glfw-3.3.9.bin.MACOS/docs/html/group__errors.html +0 -304
  187. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__axes.html +0 -202
  188. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__buttons.html +0 -410
  189. data/glfw-3.3.9.bin.MACOS/docs/html/group__hat__state.html +0 -234
  190. data/glfw-3.3.9.bin.MACOS/docs/html/group__init.html +0 -570
  191. data/glfw-3.3.9.bin.MACOS/docs/html/group__input.html +0 -2255
  192. data/glfw-3.3.9.bin.MACOS/docs/html/group__joysticks.html +0 -362
  193. data/glfw-3.3.9.bin.MACOS/docs/html/group__keys.html +0 -2034
  194. data/glfw-3.3.9.bin.MACOS/docs/html/group__mods.html +0 -198
  195. data/glfw-3.3.9.bin.MACOS/docs/html/group__monitor.html +0 -848
  196. data/glfw-3.3.9.bin.MACOS/docs/html/group__native.html +0 -812
  197. data/glfw-3.3.9.bin.MACOS/docs/html/group__shapes.html +0 -198
  198. data/glfw-3.3.9.bin.MACOS/docs/html/group__vulkan.html +0 -359
  199. data/glfw-3.3.9.bin.MACOS/docs/html/group__window.html +0 -3434
  200. data/glfw-3.3.9.bin.MACOS/docs/html/index.html +0 -100
  201. data/glfw-3.3.9.bin.MACOS/docs/html/input_8dox.html +0 -81
  202. data/glfw-3.3.9.bin.MACOS/docs/html/input_guide.html +0 -570
  203. data/glfw-3.3.9.bin.MACOS/docs/html/internal_8dox.html +0 -81
  204. data/glfw-3.3.9.bin.MACOS/docs/html/internals_guide.html +0 -132
  205. data/glfw-3.3.9.bin.MACOS/docs/html/intro_8dox.html +0 -81
  206. data/glfw-3.3.9.bin.MACOS/docs/html/intro_guide.html +0 -351
  207. data/glfw-3.3.9.bin.MACOS/docs/html/jquery.js +0 -34
  208. data/glfw-3.3.9.bin.MACOS/docs/html/main_8dox.html +0 -81
  209. data/glfw-3.3.9.bin.MACOS/docs/html/menu.js +0 -136
  210. data/glfw-3.3.9.bin.MACOS/docs/html/menudata.js +0 -29
  211. data/glfw-3.3.9.bin.MACOS/docs/html/minus.svg +0 -8
  212. data/glfw-3.3.9.bin.MACOS/docs/html/minusd.svg +0 -8
  213. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_8dox.html +0 -81
  214. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_guide.html +0 -229
  215. data/glfw-3.3.9.bin.MACOS/docs/html/moving_8dox.html +0 -81
  216. data/glfw-3.3.9.bin.MACOS/docs/html/moving_guide.html +0 -374
  217. data/glfw-3.3.9.bin.MACOS/docs/html/nav_f.png +0 -0
  218. data/glfw-3.3.9.bin.MACOS/docs/html/nav_fd.png +0 -0
  219. data/glfw-3.3.9.bin.MACOS/docs/html/nav_g.png +0 -0
  220. data/glfw-3.3.9.bin.MACOS/docs/html/nav_h.png +0 -0
  221. data/glfw-3.3.9.bin.MACOS/docs/html/nav_hd.png +0 -0
  222. data/glfw-3.3.9.bin.MACOS/docs/html/news.html +0 -634
  223. data/glfw-3.3.9.bin.MACOS/docs/html/news_8dox.html +0 -81
  224. data/glfw-3.3.9.bin.MACOS/docs/html/open.png +0 -0
  225. data/glfw-3.3.9.bin.MACOS/docs/html/pages.html +0 -99
  226. data/glfw-3.3.9.bin.MACOS/docs/html/plus.svg +0 -9
  227. data/glfw-3.3.9.bin.MACOS/docs/html/plusd.svg +0 -9
  228. data/glfw-3.3.9.bin.MACOS/docs/html/quick_8dox.html +0 -81
  229. data/glfw-3.3.9.bin.MACOS/docs/html/quick_guide.html +0 -397
  230. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_0.js +0 -5
  231. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1.js +0 -4
  232. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_10.js +0 -65
  233. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_11.js +0 -26
  234. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_12.js +0 -44
  235. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_13.js +0 -34
  236. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_14.js +0 -12
  237. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_15.js +0 -52
  238. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_16.js +0 -69
  239. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_17.js +0 -51
  240. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_18.js +0 -14
  241. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_19.js +0 -36
  242. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1a.js +0 -98
  243. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1b.js +0 -12
  244. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_2.js +0 -6
  245. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_3.js +0 -9
  246. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_4.js +0 -57
  247. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_5.js +0 -22
  248. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_6.js +0 -103
  249. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_7.js +0 -23
  250. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_8.js +0 -35
  251. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_9.js +0 -63
  252. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_a.js +0 -505
  253. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_b.js +0 -24
  254. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_c.js +0 -50
  255. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_d.js +0 -17
  256. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_e.js +0 -12
  257. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_f.js +0 -35
  258. data/glfw-3.3.9.bin.MACOS/docs/html/search/classes_0.js +0 -7
  259. data/glfw-3.3.9.bin.MACOS/docs/html/search/close.svg +0 -18
  260. data/glfw-3.3.9.bin.MACOS/docs/html/search/defines_0.js +0 -34
  261. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_0.js +0 -4
  262. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_1.js +0 -6
  263. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_2.js +0 -5
  264. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_3.js +0 -6
  265. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_4.js +0 -6
  266. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_5.js +0 -4
  267. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_6.js +0 -4
  268. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_7.js +0 -4
  269. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_8.js +0 -4
  270. data/glfw-3.3.9.bin.MACOS/docs/html/search/functions_0.js +0 -146
  271. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_0.js +0 -6
  272. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_1.js +0 -4
  273. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_10.js +0 -4
  274. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_2.js +0 -6
  275. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_3.js +0 -5
  276. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_4.js +0 -4
  277. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_5.js +0 -5
  278. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_6.js +0 -4
  279. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_7.js +0 -5
  280. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_8.js +0 -5
  281. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_9.js +0 -6
  282. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_a.js +0 -6
  283. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_b.js +0 -4
  284. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_c.js +0 -4
  285. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_d.js +0 -7
  286. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_e.js +0 -4
  287. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_f.js +0 -5
  288. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag.svg +0 -24
  289. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_d.svg +0 -24
  290. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_sel.svg +0 -31
  291. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_seld.svg +0 -31
  292. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_0.js +0 -4
  293. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_1.js +0 -4
  294. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_10.js +0 -4
  295. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_2.js +0 -5
  296. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_3.js +0 -4
  297. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_4.js +0 -6
  298. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_5.js +0 -4
  299. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_6.js +0 -4
  300. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_7.js +0 -7
  301. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_8.js +0 -6
  302. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_9.js +0 -4
  303. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_a.js +0 -5
  304. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_b.js +0 -5
  305. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_c.js +0 -4
  306. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_d.js +0 -6
  307. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_e.js +0 -6
  308. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_f.js +0 -4
  309. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.css +0 -291
  310. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.js +0 -840
  311. data/glfw-3.3.9.bin.MACOS/docs/html/search/searchdata.js +0 -39
  312. data/glfw-3.3.9.bin.MACOS/docs/html/search/typedefs_0.js +0 -32
  313. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_0.js +0 -4
  314. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_1.js +0 -6
  315. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_2.js +0 -5
  316. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_3.js +0 -4
  317. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_4.js +0 -4
  318. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_5.js +0 -6
  319. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_6.js +0 -4
  320. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_7.js +0 -4
  321. data/glfw-3.3.9.bin.MACOS/docs/html/spaces.svg +0 -877
  322. data/glfw-3.3.9.bin.MACOS/docs/html/splitbar.png +0 -0
  323. data/glfw-3.3.9.bin.MACOS/docs/html/splitbard.png +0 -0
  324. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  325. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  326. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wimage.html +0 -151
  327. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wvidmode.html +0 -204
  328. data/glfw-3.3.9.bin.MACOS/docs/html/sync_off.png +0 -0
  329. data/glfw-3.3.9.bin.MACOS/docs/html/sync_on.png +0 -0
  330. data/glfw-3.3.9.bin.MACOS/docs/html/tab_a.png +0 -0
  331. data/glfw-3.3.9.bin.MACOS/docs/html/tab_ad.png +0 -0
  332. data/glfw-3.3.9.bin.MACOS/docs/html/tab_b.png +0 -0
  333. data/glfw-3.3.9.bin.MACOS/docs/html/tab_bd.png +0 -0
  334. data/glfw-3.3.9.bin.MACOS/docs/html/tab_h.png +0 -0
  335. data/glfw-3.3.9.bin.MACOS/docs/html/tab_hd.png +0 -0
  336. data/glfw-3.3.9.bin.MACOS/docs/html/tab_s.png +0 -0
  337. data/glfw-3.3.9.bin.MACOS/docs/html/tab_sd.png +0 -0
  338. data/glfw-3.3.9.bin.MACOS/docs/html/tabs.css +0 -1
  339. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_8dox.html +0 -81
  340. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_guide.html +0 -196
  341. data/glfw-3.3.9.bin.MACOS/docs/html/window_8dox.html +0 -81
  342. data/glfw-3.3.9.bin.MACOS/docs/html/window_guide.html +0 -763
  343. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3.h +0 -5932
  344. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3native.h +0 -634
  345. data/glfw-3.3.9.bin.MACOS/lib-arm64/libglfw3.a +0 -0
  346. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw.3.dylib +0 -0
  347. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw3.a +0 -0
  348. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw.3.dylib +0 -0
  349. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw3.a +0 -0
  350. data/glfw-3.4.bin.WIN64/README.md +0 -70
  351. data/glfw-3.4.bin.WIN64/docs/html/bc_s.png +0 -0
  352. data/glfw-3.4.bin.WIN64/docs/html/bc_sd.png +0 -0
  353. data/glfw-3.4.bin.WIN64/docs/html/build_8md.html +0 -81
  354. data/glfw-3.4.bin.WIN64/docs/html/build_guide.html +0 -217
  355. data/glfw-3.4.bin.WIN64/docs/html/closed.png +0 -0
  356. data/glfw-3.4.bin.WIN64/docs/html/compat_8md.html +0 -81
  357. data/glfw-3.4.bin.WIN64/docs/html/compat_guide.html +0 -156
  358. data/glfw-3.4.bin.WIN64/docs/html/compile_8md.html +0 -81
  359. data/glfw-3.4.bin.WIN64/docs/html/compile_guide.html +0 -219
  360. data/glfw-3.4.bin.WIN64/docs/html/context_8md.html +0 -81
  361. data/glfw-3.4.bin.WIN64/docs/html/context_guide.html +0 -258
  362. data/glfw-3.4.bin.WIN64/docs/html/deprecated.html +0 -88
  363. data/glfw-3.4.bin.WIN64/docs/html/dir_13577e2d8b9423099662de029791bd7d.html +0 -93
  364. data/glfw-3.4.bin.WIN64/docs/html/dir_7f92719a7fe62e5b064f87d7a3c220b1.html +0 -95
  365. data/glfw-3.4.bin.WIN64/docs/html/dir_a788ef6c2b1e5b367804e0b6ccfd6f11.html +0 -85
  366. data/glfw-3.4.bin.WIN64/docs/html/dir_b11153cd0f4fd04a7564cc166f482635.html +0 -91
  367. data/glfw-3.4.bin.WIN64/docs/html/doc.svg +0 -12
  368. data/glfw-3.4.bin.WIN64/docs/html/docd.svg +0 -12
  369. data/glfw-3.4.bin.WIN64/docs/html/doxygen.css +0 -1685
  370. data/glfw-3.4.bin.WIN64/docs/html/doxygen.svg +0 -28
  371. data/glfw-3.4.bin.WIN64/docs/html/dynsections.js +0 -192
  372. data/glfw-3.4.bin.WIN64/docs/html/extra.css +0 -2
  373. data/glfw-3.4.bin.WIN64/docs/html/files.html +0 -91
  374. data/glfw-3.4.bin.WIN64/docs/html/folderclosed.svg +0 -11
  375. data/glfw-3.4.bin.WIN64/docs/html/folderclosedd.svg +0 -11
  376. data/glfw-3.4.bin.WIN64/docs/html/folderopen.svg +0 -17
  377. data/glfw-3.4.bin.WIN64/docs/html/folderopend.svg +0 -12
  378. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h.html +0 -1910
  379. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h_source.html +0 -1260
  380. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h.html +0 -170
  381. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h_source.html +0 -306
  382. data/glfw-3.4.bin.WIN64/docs/html/group__buttons.html +0 -282
  383. data/glfw-3.4.bin.WIN64/docs/html/group__context.html +0 -304
  384. data/glfw-3.4.bin.WIN64/docs/html/group__errors.html +0 -384
  385. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__axes.html +0 -202
  386. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__buttons.html +0 -410
  387. data/glfw-3.4.bin.WIN64/docs/html/group__hat__state.html +0 -234
  388. data/glfw-3.4.bin.WIN64/docs/html/group__init.html +0 -1015
  389. data/glfw-3.4.bin.WIN64/docs/html/group__input.html +0 -2285
  390. data/glfw-3.4.bin.WIN64/docs/html/group__joysticks.html +0 -362
  391. data/glfw-3.4.bin.WIN64/docs/html/group__keys.html +0 -2034
  392. data/glfw-3.4.bin.WIN64/docs/html/group__mods.html +0 -198
  393. data/glfw-3.4.bin.WIN64/docs/html/group__monitor.html +0 -849
  394. data/glfw-3.4.bin.WIN64/docs/html/group__native.html +0 -837
  395. data/glfw-3.4.bin.WIN64/docs/html/group__shapes.html +0 -337
  396. data/glfw-3.4.bin.WIN64/docs/html/group__vulkan.html +0 -361
  397. data/glfw-3.4.bin.WIN64/docs/html/group__window.html +0 -3608
  398. data/glfw-3.4.bin.WIN64/docs/html/index.html +0 -100
  399. data/glfw-3.4.bin.WIN64/docs/html/input_8md.html +0 -81
  400. data/glfw-3.4.bin.WIN64/docs/html/input_guide.html +0 -576
  401. data/glfw-3.4.bin.WIN64/docs/html/internal_8md.html +0 -81
  402. data/glfw-3.4.bin.WIN64/docs/html/internals_guide.html +0 -135
  403. data/glfw-3.4.bin.WIN64/docs/html/intro_8md.html +0 -81
  404. data/glfw-3.4.bin.WIN64/docs/html/intro_guide.html +0 -429
  405. data/glfw-3.4.bin.WIN64/docs/html/jquery.js +0 -34
  406. data/glfw-3.4.bin.WIN64/docs/html/main_8md.html +0 -81
  407. data/glfw-3.4.bin.WIN64/docs/html/menu.js +0 -136
  408. data/glfw-3.4.bin.WIN64/docs/html/menudata.js +0 -30
  409. data/glfw-3.4.bin.WIN64/docs/html/minus.svg +0 -8
  410. data/glfw-3.4.bin.WIN64/docs/html/minusd.svg +0 -8
  411. data/glfw-3.4.bin.WIN64/docs/html/monitor_8md.html +0 -81
  412. data/glfw-3.4.bin.WIN64/docs/html/monitor_guide.html +0 -228
  413. data/glfw-3.4.bin.WIN64/docs/html/moving_8md.html +0 -81
  414. data/glfw-3.4.bin.WIN64/docs/html/moving_guide.html +0 -360
  415. data/glfw-3.4.bin.WIN64/docs/html/nav_f.png +0 -0
  416. data/glfw-3.4.bin.WIN64/docs/html/nav_fd.png +0 -0
  417. data/glfw-3.4.bin.WIN64/docs/html/nav_g.png +0 -0
  418. data/glfw-3.4.bin.WIN64/docs/html/nav_h.png +0 -0
  419. data/glfw-3.4.bin.WIN64/docs/html/nav_hd.png +0 -0
  420. data/glfw-3.4.bin.WIN64/docs/html/news.html +0 -336
  421. data/glfw-3.4.bin.WIN64/docs/html/news_8md.html +0 -81
  422. data/glfw-3.4.bin.WIN64/docs/html/open.png +0 -0
  423. data/glfw-3.4.bin.WIN64/docs/html/pages.html +0 -99
  424. data/glfw-3.4.bin.WIN64/docs/html/plus.svg +0 -9
  425. data/glfw-3.4.bin.WIN64/docs/html/plusd.svg +0 -9
  426. data/glfw-3.4.bin.WIN64/docs/html/quick_8md.html +0 -81
  427. data/glfw-3.4.bin.WIN64/docs/html/quick_guide.html +0 -406
  428. data/glfw-3.4.bin.WIN64/docs/html/search/all_0.js +0 -4
  429. data/glfw-3.4.bin.WIN64/docs/html/search/all_1.js +0 -4
  430. data/glfw-3.4.bin.WIN64/docs/html/search/all_10.js +0 -13
  431. data/glfw-3.4.bin.WIN64/docs/html/search/all_11.js +0 -11
  432. data/glfw-3.4.bin.WIN64/docs/html/search/all_12.js +0 -26
  433. data/glfw-3.4.bin.WIN64/docs/html/search/all_13.js +0 -51
  434. data/glfw-3.4.bin.WIN64/docs/html/search/all_14.js +0 -22
  435. data/glfw-3.4.bin.WIN64/docs/html/search/all_15.js +0 -35
  436. data/glfw-3.4.bin.WIN64/docs/html/search/all_16.js +0 -29
  437. data/glfw-3.4.bin.WIN64/docs/html/search/all_17.js +0 -8
  438. data/glfw-3.4.bin.WIN64/docs/html/search/all_18.js +0 -44
  439. data/glfw-3.4.bin.WIN64/docs/html/search/all_19.js +0 -60
  440. data/glfw-3.4.bin.WIN64/docs/html/search/all_1a.js +0 -39
  441. data/glfw-3.4.bin.WIN64/docs/html/search/all_1b.js +0 -8
  442. data/glfw-3.4.bin.WIN64/docs/html/search/all_1c.js +0 -32
  443. data/glfw-3.4.bin.WIN64/docs/html/search/all_1d.js +0 -84
  444. data/glfw-3.4.bin.WIN64/docs/html/search/all_1e.js +0 -13
  445. data/glfw-3.4.bin.WIN64/docs/html/search/all_1f.js +0 -4
  446. data/glfw-3.4.bin.WIN64/docs/html/search/all_2.js +0 -5
  447. data/glfw-3.4.bin.WIN64/docs/html/search/all_3.js +0 -4
  448. data/glfw-3.4.bin.WIN64/docs/html/search/all_4.js +0 -4
  449. data/glfw-3.4.bin.WIN64/docs/html/search/all_5.js +0 -4
  450. data/glfw-3.4.bin.WIN64/docs/html/search/all_6.js +0 -4
  451. data/glfw-3.4.bin.WIN64/docs/html/search/all_7.js +0 -58
  452. data/glfw-3.4.bin.WIN64/docs/html/search/all_8.js +0 -21
  453. data/glfw-3.4.bin.WIN64/docs/html/search/all_9.js +0 -82
  454. data/glfw-3.4.bin.WIN64/docs/html/search/all_a.js +0 -20
  455. data/glfw-3.4.bin.WIN64/docs/html/search/all_b.js +0 -26
  456. data/glfw-3.4.bin.WIN64/docs/html/search/all_c.js +0 -35
  457. data/glfw-3.4.bin.WIN64/docs/html/search/all_d.js +0 -555
  458. data/glfw-3.4.bin.WIN64/docs/html/search/all_e.js +0 -23
  459. data/glfw-3.4.bin.WIN64/docs/html/search/all_f.js +0 -40
  460. data/glfw-3.4.bin.WIN64/docs/html/search/classes_0.js +0 -8
  461. data/glfw-3.4.bin.WIN64/docs/html/search/close.svg +0 -18
  462. data/glfw-3.4.bin.WIN64/docs/html/search/defines_0.js +0 -43
  463. data/glfw-3.4.bin.WIN64/docs/html/search/files_0.js +0 -4
  464. data/glfw-3.4.bin.WIN64/docs/html/search/files_1.js +0 -6
  465. data/glfw-3.4.bin.WIN64/docs/html/search/files_2.js +0 -5
  466. data/glfw-3.4.bin.WIN64/docs/html/search/files_3.js +0 -6
  467. data/glfw-3.4.bin.WIN64/docs/html/search/files_4.js +0 -6
  468. data/glfw-3.4.bin.WIN64/docs/html/search/files_5.js +0 -4
  469. data/glfw-3.4.bin.WIN64/docs/html/search/files_6.js +0 -4
  470. data/glfw-3.4.bin.WIN64/docs/html/search/files_7.js +0 -4
  471. data/glfw-3.4.bin.WIN64/docs/html/search/files_8.js +0 -4
  472. data/glfw-3.4.bin.WIN64/docs/html/search/functions_0.js +0 -152
  473. data/glfw-3.4.bin.WIN64/docs/html/search/groups_0.js +0 -6
  474. data/glfw-3.4.bin.WIN64/docs/html/search/groups_1.js +0 -4
  475. data/glfw-3.4.bin.WIN64/docs/html/search/groups_10.js +0 -4
  476. data/glfw-3.4.bin.WIN64/docs/html/search/groups_2.js +0 -6
  477. data/glfw-3.4.bin.WIN64/docs/html/search/groups_3.js +0 -5
  478. data/glfw-3.4.bin.WIN64/docs/html/search/groups_4.js +0 -4
  479. data/glfw-3.4.bin.WIN64/docs/html/search/groups_5.js +0 -5
  480. data/glfw-3.4.bin.WIN64/docs/html/search/groups_6.js +0 -4
  481. data/glfw-3.4.bin.WIN64/docs/html/search/groups_7.js +0 -5
  482. data/glfw-3.4.bin.WIN64/docs/html/search/groups_8.js +0 -5
  483. data/glfw-3.4.bin.WIN64/docs/html/search/groups_9.js +0 -6
  484. data/glfw-3.4.bin.WIN64/docs/html/search/groups_a.js +0 -6
  485. data/glfw-3.4.bin.WIN64/docs/html/search/groups_b.js +0 -4
  486. data/glfw-3.4.bin.WIN64/docs/html/search/groups_c.js +0 -4
  487. data/glfw-3.4.bin.WIN64/docs/html/search/groups_d.js +0 -7
  488. data/glfw-3.4.bin.WIN64/docs/html/search/groups_e.js +0 -4
  489. data/glfw-3.4.bin.WIN64/docs/html/search/groups_f.js +0 -5
  490. data/glfw-3.4.bin.WIN64/docs/html/search/mag.svg +0 -24
  491. data/glfw-3.4.bin.WIN64/docs/html/search/mag_d.svg +0 -24
  492. data/glfw-3.4.bin.WIN64/docs/html/search/mag_sel.svg +0 -31
  493. data/glfw-3.4.bin.WIN64/docs/html/search/mag_seld.svg +0 -31
  494. data/glfw-3.4.bin.WIN64/docs/html/search/pages_0.js +0 -4
  495. data/glfw-3.4.bin.WIN64/docs/html/search/pages_1.js +0 -5
  496. data/glfw-3.4.bin.WIN64/docs/html/search/pages_10.js +0 -5
  497. data/glfw-3.4.bin.WIN64/docs/html/search/pages_11.js +0 -4
  498. data/glfw-3.4.bin.WIN64/docs/html/search/pages_2.js +0 -4
  499. data/glfw-3.4.bin.WIN64/docs/html/search/pages_3.js +0 -5
  500. data/glfw-3.4.bin.WIN64/docs/html/search/pages_4.js +0 -4
  501. data/glfw-3.4.bin.WIN64/docs/html/search/pages_5.js +0 -6
  502. data/glfw-3.4.bin.WIN64/docs/html/search/pages_6.js +0 -4
  503. data/glfw-3.4.bin.WIN64/docs/html/search/pages_7.js +0 -5
  504. data/glfw-3.4.bin.WIN64/docs/html/search/pages_8.js +0 -7
  505. data/glfw-3.4.bin.WIN64/docs/html/search/pages_9.js +0 -7
  506. data/glfw-3.4.bin.WIN64/docs/html/search/pages_a.js +0 -4
  507. data/glfw-3.4.bin.WIN64/docs/html/search/pages_b.js +0 -5
  508. data/glfw-3.4.bin.WIN64/docs/html/search/pages_c.js +0 -4
  509. data/glfw-3.4.bin.WIN64/docs/html/search/pages_d.js +0 -4
  510. data/glfw-3.4.bin.WIN64/docs/html/search/pages_e.js +0 -6
  511. data/glfw-3.4.bin.WIN64/docs/html/search/pages_f.js +0 -6
  512. data/glfw-3.4.bin.WIN64/docs/html/search/search.css +0 -291
  513. data/glfw-3.4.bin.WIN64/docs/html/search/search.js +0 -840
  514. data/glfw-3.4.bin.WIN64/docs/html/search/searchdata.js +0 -39
  515. data/glfw-3.4.bin.WIN64/docs/html/search/typedefs_0.js +0 -36
  516. data/glfw-3.4.bin.WIN64/docs/html/search/variables_0.js +0 -5
  517. data/glfw-3.4.bin.WIN64/docs/html/search/variables_1.js +0 -6
  518. data/glfw-3.4.bin.WIN64/docs/html/search/variables_2.js +0 -4
  519. data/glfw-3.4.bin.WIN64/docs/html/search/variables_3.js +0 -5
  520. data/glfw-3.4.bin.WIN64/docs/html/search/variables_4.js +0 -4
  521. data/glfw-3.4.bin.WIN64/docs/html/search/variables_5.js +0 -4
  522. data/glfw-3.4.bin.WIN64/docs/html/search/variables_6.js +0 -7
  523. data/glfw-3.4.bin.WIN64/docs/html/search/variables_7.js +0 -4
  524. data/glfw-3.4.bin.WIN64/docs/html/search/variables_8.js +0 -4
  525. data/glfw-3.4.bin.WIN64/docs/html/search/variables_9.js +0 -4
  526. data/glfw-3.4.bin.WIN64/docs/html/spaces.svg +0 -877
  527. data/glfw-3.4.bin.WIN64/docs/html/splitbar.png +0 -0
  528. data/glfw-3.4.bin.WIN64/docs/html/splitbard.png +0 -0
  529. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wallocator.html +0 -168
  530. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  531. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  532. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wimage.html +0 -151
  533. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wvidmode.html +0 -204
  534. data/glfw-3.4.bin.WIN64/docs/html/sync_off.png +0 -0
  535. data/glfw-3.4.bin.WIN64/docs/html/sync_on.png +0 -0
  536. data/glfw-3.4.bin.WIN64/docs/html/tab_a.png +0 -0
  537. data/glfw-3.4.bin.WIN64/docs/html/tab_ad.png +0 -0
  538. data/glfw-3.4.bin.WIN64/docs/html/tab_b.png +0 -0
  539. data/glfw-3.4.bin.WIN64/docs/html/tab_bd.png +0 -0
  540. data/glfw-3.4.bin.WIN64/docs/html/tab_h.png +0 -0
  541. data/glfw-3.4.bin.WIN64/docs/html/tab_hd.png +0 -0
  542. data/glfw-3.4.bin.WIN64/docs/html/tab_s.png +0 -0
  543. data/glfw-3.4.bin.WIN64/docs/html/tab_sd.png +0 -0
  544. data/glfw-3.4.bin.WIN64/docs/html/tabs.css +0 -1
  545. data/glfw-3.4.bin.WIN64/docs/html/topics.html +0 -101
  546. data/glfw-3.4.bin.WIN64/docs/html/vulkan_8md.html +0 -81
  547. data/glfw-3.4.bin.WIN64/docs/html/vulkan_guide.html +0 -206
  548. data/glfw-3.4.bin.WIN64/docs/html/window_8md.html +0 -81
  549. data/glfw-3.4.bin.WIN64/docs/html/window_guide.html +0 -806
  550. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3.h +0 -6547
  551. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3native.h +0 -663
  552. data/glfw-3.4.bin.WIN64/lib-mingw-w64/glfw3.dll +0 -0
  553. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3.a +0 -0
  554. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3dll.a +0 -0
  555. data/glfw-3.4.bin.WIN64/lib-static-ucrt/glfw3dll.lib +0 -0
  556. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.dll +0 -0
  557. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.lib +0 -0
  558. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3_mt.lib +0 -0
  559. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3dll.lib +0 -0
  560. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.dll +0 -0
  561. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.lib +0 -0
  562. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3_mt.lib +0 -0
  563. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3dll.lib +0 -0
  564. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.dll +0 -0
  565. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.lib +0 -0
  566. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3_mt.lib +0 -0
  567. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3dll.lib +0 -0
  568. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.dll +0 -0
  569. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.lib +0 -0
  570. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3_mt.lib +0 -0
  571. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3dll.lib +0 -0
  572. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.dll +0 -0
  573. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.lib +0 -0
  574. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3_mt.lib +0 -0
  575. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3dll.lib +0 -0
  576. data/lib/engine/components/font_renderer.rb +0 -134
  577. data/lib/engine/components/mesh_renderer.rb +0 -31
  578. data/lib/engine/components/sprite_renderer.rb +0 -141
  579. data/lib/engine/components/ui_font_renderer.rb +0 -140
  580. data/lib/engine/components/ui_sprite_clickbox.rb +0 -62
  581. data/lib/engine/components/ui_sprite_renderer.rb +0 -101
  582. data/lib/engine/shaders/skybox_frag.glsl +0 -12
  583. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.3.9.bin.MACOS}/LICENSE.md +0 -0
  584. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.4.bin.WIN64}/lib-static-ucrt/glfw3.dll +0 -0
@@ -1,26 +0,0 @@
1
- var searchData=
2
- [
3
- ['lack_20alpha_20channel_20on_20older_20systems_0',['Wayland framebuffer may lack alpha channel on older systems',['../news.html#wayland_alpha_caveat',1,'']]],
4
- ['later_1',['Documentation generation requires Doxygen 1.9.8 or later',['../news.html#docs_target_caveat',1,'']]],
5
- ['leave_20events_2',['Cursor enter/leave events',['../input_guide.html#cursor_enter',1,'']]],
6
- ['libdecor_20decorations_3',['Wayland libdecor decorations',['../news.html#wayland_libdecor_decorations',1,'']]],
7
- ['libraries_4',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
8
- ['library_5',['library',['../compile_guide.html#compile_compile',1,'Compiling the library'],['../context_guide.html#context_glext_auto',1,'Loading extension with a loader library']]],
9
- ['library_20and_20header_20file_6',['Renamed library and header file',['../moving_guide.html#moving_renamed_files',1,'']]],
10
- ['lifetimes_7',['Pointer lifetimes',['../intro_guide.html#lifetime',1,'']]],
11
- ['like_20system_20specific_20cmake_20options_8',['Unix-like system specific CMake options',['../compile_guide.html#compile_options_unix',1,'']]],
12
- ['limitations_9',['Guarantees and limitations',['../intro_guide.html#guarantees_limitations',1,'']]],
13
- ['limits_10',['Window size limits',['../window_guide.html#window_sizelimits',1,'']]],
14
- ['line_20cmake_11',['Generating with command-line CMake',['../compile_guide.html#compile_generate_cli',1,'']]],
15
- ['line_20or_20makefile_20on_20macos_12',['With command-line or makefile on macOS',['../build_guide.html#build_link_osx',1,'']]],
16
- ['link_20with_20the_20right_20libraries_13',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
17
- ['list_14',['Deprecated List',['../deprecated.html',1,'']]],
18
- ['loader_15',['Finding the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
19
- ['loader_20and_20api_16',['Vulkan loader and API',['../compat_guide.html#compat_vulkan',1,'']]],
20
- ['loader_20library_17',['Loading extension with a loader library',['../context_guide.html#context_glext_auto',1,'']]],
21
- ['loading_18',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
22
- ['loading_20extension_20with_20a_20loader_20library_19',['Loading extension with a loader library',['../context_guide.html#context_glext_auto',1,'']]],
23
- ['loading_20extensions_20manually_20',['Loading extensions manually',['../context_guide.html#context_glext_manual',1,'']]],
24
- ['longer_20generated_21',['Configuration header is no longer generated',['../news.html#config_header_caveat',1,'']]],
25
- ['longer_20round_20trip_20to_20server_22',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]]
26
- ];
@@ -1,51 +0,0 @@
1
- var searchData=
2
- [
3
- ['macos_0',['macos',['../compat_guide.html#compat_osx',1,'OpenGL on macOS'],['../build_guide.html#build_link_osx',1,'With command-line or makefile on macOS'],['../build_guide.html#build_link_xcode',1,'With Xcode on macOS']]],
4
- ['macos_20corevideo_20dependency_20has_20been_20removed_1',['macOS CoreVideo dependency has been removed',['../news.html#corevideo_caveat',1,'']]],
5
- ['macos_20main_20menu_20now_20created_20at_20initialization_2',['macOS main menu now created at initialization',['../news.html#macos_menu_caveat',1,'']]],
6
- ['macos_20specific_20cmake_20options_3',['macOS specific CMake options',['../compile_guide.html#compile_options_macos',1,'']]],
7
- ['macos_20specific_20hints_4',['macOS specific hints',['../window_guide.html#window_hints_osx',1,'']]],
8
- ['macos_20specific_20init_20hints_5',['macOS specific init hints',['../intro_guide.html#init_hints_osx',1,'']]],
9
- ['macro_6',['Removal of GLFWCALL macro',['../moving_guide.html#moving_stdcall',1,'']]],
10
- ['macros_7',['macros',['../internals_guide.html#internals_config',1,'Configuration macros'],['../build_guide.html#build_macros',1,'GLFW header option macros']]],
11
- ['main_20menu_20now_20created_20at_20initialization_8',['macOS main menu now created at initialization',['../news.html#macos_menu_caveat',1,'']]],
12
- ['main_2emd_9',['main.md',['../main_8md.html',1,'']]],
13
- ['makefile_20on_20macos_10',['With command-line or makefile on macOS',['../build_guide.html#build_link_osx',1,'']]],
14
- ['making_20the_20opengl_20context_20current_11',['Making the OpenGL context current',['../quick_guide.html#quick_context_current',1,'']]],
15
- ['management_12',['management',['../moving_guide.html#moving_context',1,'Explicit context management'],['../intro_guide.html#intro_version',1,'Version management']]],
16
- ['manually_13',['manually',['../compile_guide.html#compile_manual',1,'Compiling GLFW manually'],['../context_guide.html#context_glext_manual',1,'Loading extensions manually']]],
17
- ['mappings_14',['Gamepad mappings',['../input_guide.html#gamepad_mapping',1,'']]],
18
- ['maximization_15',['Window maximization',['../window_guide.html#window_maximize',1,'']]],
19
- ['may_20lack_20alpha_20channel_20on_20older_20systems_16',['Wayland framebuffer may lack alpha channel on older systems',['../news.html#wayland_alpha_caveat',1,'']]],
20
- ['mbcs_20support_17',['Win32 MBCS support',['../moving_guide.html#moving_mbcs',1,'']]],
21
- ['memory_20allocator_18',['memory allocator',['../intro_guide.html#init_allocator',1,'Custom heap memory allocator'],['../news.html#custom_heap_allocator',1,'Support for custom heap memory allocator']]],
22
- ['menu_20keyboard_20access_20hint_19',['Windows window menu keyboard access hint',['../news.html#win32_keymenu_hint',1,'']]],
23
- ['menu_20now_20created_20at_20initialization_20',['macOS main menu now created at initialization',['../news.html#macos_menu_caveat',1,'']]],
24
- ['mingw_21',['Cross-compilation with CMake and MinGW',['../compile_guide.html#compile_mingw_cross',1,'']]],
25
- ['mingw_20support_20is_20deprecated_22',['Original MinGW support is deprecated',['../news.html#mingw_deprecated',1,'']]],
26
- ['mingw_20w64_20and_20glfw_20binaries_23',['With MinGW-w64 and GLFW binaries',['../build_guide.html#build_link_mingw',1,'']]],
27
- ['mode_24',['mode',['../news.html#captured_cursor_mode',1,'Captured cursor mode'],['../input_guide.html#cursor_mode',1,'Cursor mode']]],
28
- ['mode_20enumeration_25',['Video mode enumeration',['../moving_guide.html#moving_video_modes',1,'']]],
29
- ['modes_26',['Video modes',['../monitor_guide.html#monitor_modes',1,'']]],
30
- ['modifier_20key_20flags_27',['Modifier key flags',['../group__mods.html',1,'']]],
31
- ['monitor_28',['Window monitor',['../window_guide.html#window_monitor',1,'']]],
32
- ['monitor_20configuration_20changes_29',['Monitor configuration changes',['../monitor_guide.html#monitor_event',1,'']]],
33
- ['monitor_20guide_30',['Monitor guide',['../monitor_guide.html',1,'']]],
34
- ['monitor_20objects_31',['Monitor objects',['../monitor_guide.html#monitor_object',1,'']]],
35
- ['monitor_20properties_32',['Monitor properties',['../monitor_guide.html#monitor_properties',1,'']]],
36
- ['monitor_20reference_33',['Monitor reference',['../group__monitor.html',1,'']]],
37
- ['monitor_20related_20hints_34',['Monitor related hints',['../window_guide.html#window_hints_mtr',1,'']]],
38
- ['monitor_20selection_35',['Explicit monitor selection',['../moving_guide.html#moving_monitor',1,'']]],
39
- ['monitor_2emd_36',['monitor.md',['../monitor_8md.html',1,'']]],
40
- ['monitors_37',['Retrieving monitors',['../monitor_guide.html#monitor_monitors',1,'']]],
41
- ['more_20standard_20cursor_20shapes_38',['More standard cursor shapes',['../news.html#more_cursor_shapes',1,'']]],
42
- ['motion_39',['Raw mouse motion',['../input_guide.html#raw_mouse_motion',1,'']]],
43
- ['mouse_20button_20input_40',['Mouse button input',['../input_guide.html#input_mouse_button',1,'']]],
44
- ['mouse_20buttons_41',['Mouse buttons',['../group__buttons.html',1,'']]],
45
- ['mouse_20event_20passthrough_42',['Mouse event passthrough',['../news.html#mouse_input_passthrough',1,'']]],
46
- ['mouse_20input_43',['Mouse input',['../input_guide.html#input_mouse',1,'']]],
47
- ['mouse_20motion_44',['Raw mouse motion',['../input_guide.html#raw_mouse_motion',1,'']]],
48
- ['moving_20from_20glfw_202_20to_203_45',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
49
- ['moving_2emd_46',['moving.md',['../moving_8md.html',1,'']]],
50
- ['multiple_20sets_20of_20native_20access_20functions_47',['Multiple sets of native access functions',['../news.html#multiplatform_caveat',1,'']]]
51
- ];
@@ -1,22 +0,0 @@
1
- var searchData=
2
- [
3
- ['name_0',['name',['../monitor_guide.html#monitor_name',1,'Human-readable name'],['../input_guide.html#joystick_name',1,'Joystick name']]],
4
- ['name_20change_20tables_1',['Name change tables',['../moving_guide.html#moving_tables',1,'']]],
5
- ['names_2',['Key names',['../input_guide.html#input_key_name',1,'']]],
6
- ['native_20access_3',['Native access',['../group__native.html',1,'']]],
7
- ['native_20access_20function_4',['Cocoa NSView native access function',['../news.html#cocoa_nsview_function',1,'']]],
8
- ['native_20access_20functions_5',['Multiple sets of native access functions',['../news.html#multiplatform_caveat',1,'']]],
9
- ['native_20interface_6',['Native interface',['../internals_guide.html#internals_native',1,'']]],
10
- ['new_20constants_7',['New constants',['../news.html#new_constants',1,'']]],
11
- ['new_20features_8',['New features',['../news.html#features',1,'']]],
12
- ['new_20functions_9',['New functions',['../news.html#new_functions',1,'']]],
13
- ['new_20symbols_10',['New symbols',['../news.html#new_symbols',1,'']]],
14
- ['new_20types_11',['New types',['../news.html#new_types',1,'']]],
15
- ['news_2emd_12',['news.md',['../news_8md.html',1,'']]],
16
- ['no_20longer_20generated_13',['Configuration header is no longer generated',['../news.html#config_header_caveat',1,'']]],
17
- ['no_20longer_20round_20trip_20to_20server_14',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
18
- ['notes_20for_20earlier_20versions_15',['Release notes for earlier versions',['../news.html#news_archive',1,'']]],
19
- ['notes_20for_20version_203_204_16',['Release notes for version 3.4',['../news.html',1,'']]],
20
- ['now_20created_20at_20initialization_17',['macOS main menu now created at initialization',['../news.html#macos_menu_caveat',1,'']]],
21
- ['nsview_20native_20access_20function_18',['Cocoa NSView native access function',['../news.html#cocoa_nsview_function',1,'']]]
22
- ];
@@ -1,35 +0,0 @@
1
- var searchData=
2
- [
3
- ['object_20sharing_0',['Context object sharing',['../context_guide.html#context_sharing',1,'']]],
4
- ['objects_1',['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']]],
5
- ['of_20automatic_20event_20polling_2',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
6
- ['of_20character_20actions_3',['Removal of character actions',['../moving_guide.html#moving_char_up',1,'']]],
7
- ['of_20glfwcall_20macro_4',['Removal of GLFWCALL macro',['../moving_guide.html#moving_stdcall',1,'']]],
8
- ['of_20image_20and_20texture_20loading_5',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
9
- ['of_20native_20access_20functions_6',['Multiple sets of native access functions',['../news.html#multiplatform_caveat',1,'']]],
10
- ['of_20system_20wide_20hotkeys_7',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
11
- ['of_20threading_20functions_8',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
12
- ['of_20window_20and_20framebuffer_20sizes_9',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
13
- ['of_20windows_20older_20than_20xp_10',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
14
- ['offscreen_20contexts_11',['Offscreen contexts',['../context_guide.html#context_offscreen',1,'']]],
15
- ['offsets_12',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
16
- ['older_20systems_13',['Wayland framebuffer may lack alpha channel on older systems',['../news.html#wayland_alpha_caveat',1,'']]],
17
- ['older_20than_20xp_14',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
18
- ['on_20demand_15',['Joystick support is initialized on demand',['../news.html#joystick_init_caveat',1,'']]],
19
- ['on_20macos_16',['on macos',['../compat_guide.html#compat_osx',1,'OpenGL on macOS'],['../build_guide.html#build_link_osx',1,'With command-line or makefile on macOS'],['../build_guide.html#build_link_xcode',1,'With Xcode on macOS']]],
20
- ['on_20older_20systems_17',['Wayland framebuffer may lack alpha channel on older systems',['../news.html#wayland_alpha_caveat',1,'']]],
21
- ['on_20unix_18',['With pkg-config and GLFW binaries on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
22
- ['opengl_19',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
23
- ['opengl_20and_20opengl_20es_20extensions_20',['OpenGL and OpenGL ES extensions',['../context_guide.html#context_glext',1,'']]],
24
- ['opengl_20context_20current_21',['Making the OpenGL context current',['../quick_guide.html#quick_context_current',1,'']]],
25
- ['opengl_20on_20macos_22',['OpenGL on macOS',['../compat_guide.html#compat_osx',1,'']]],
26
- ['option_20has_20been_20removed_23',['option has been removed',['../news.html#use_osmesa_removed',1,'GLFW_USE_OSMESA CMake option has been removed'],['../news.html#use_wayland_removed',1,'GLFW_USE_WAYLAND CMake option has been removed'],['../news.html#vulkan_static_removed',1,'GLFW_VULKAN_STATIC CMake option has been removed']]],
27
- ['option_20macros_24',['GLFW header option macros',['../build_guide.html#build_macros',1,'']]],
28
- ['options_25',['options',['../compile_guide.html#compile_options',1,'CMake options'],['../compile_guide.html#compile_options_macos',1,'macOS specific CMake options'],['../compile_guide.html#compile_options_shared',1,'Shared CMake options'],['../compile_guide.html#compile_options_unix',1,'Unix-like system specific CMake options'],['../compile_guide.html#compile_options_win32',1,'Win32 specific CMake options']]],
29
- ['or_20later_26',['Documentation generation requires Doxygen 1.9.8 or later',['../news.html#docs_target_caveat',1,'']]],
30
- ['or_20makefile_20on_20macos_27',['With command-line or makefile on macOS',['../build_guide.html#build_link_osx',1,'']]],
31
- ['order_28',['Event order',['../intro_guide.html#event_order',1,'']]],
32
- ['original_20mingw_20support_20is_20deprecated_29',['Original MinGW support is deprecated',['../news.html#mingw_deprecated',1,'']]],
33
- ['os_20x_20yosemite_20support_20is_20deprecated_30',['OS X Yosemite support is deprecated',['../news.html#yosemite_deprecated',1,'']]],
34
- ['output_31',['Clipboard input and output',['../input_guide.html#clipboard',1,'']]]
35
- ];
@@ -1,29 +0,0 @@
1
- var searchData=
2
- [
3
- ['parameters_0',['Window handle parameters',['../moving_guide.html#moving_window_handles',1,'']]],
4
- ['passthrough_1',['Mouse event passthrough',['../news.html#mouse_input_passthrough',1,'']]],
5
- ['path_20drop_20input_2',['Path drop input',['../input_guide.html#path_drop',1,'']]],
6
- ['persistent_20window_20hints_3',['Persistent window hints',['../moving_guide.html#moving_hints',1,'']]],
7
- ['physical_20key_20input_4',['Physical key input',['../moving_guide.html#moving_keys',1,'']]],
8
- ['physical_20size_5',['Physical size',['../monitor_guide.html#monitor_size',1,'']]],
9
- ['pixels_6',['pixels',['../struct_g_l_f_wimage.html#a0c532a5c2bb715555279b7817daba0fb',1,'GLFWimage']]],
10
- ['pkg_20config_20and_20glfw_20binaries_20on_20unix_7',['With pkg-config and GLFW binaries on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
11
- ['platform_20interface_8',['Platform interface',['../internals_guide.html#internals_platform',1,'']]],
12
- ['platform_20selection_9',['platform selection',['../news.html#runtime_platform_selection',1,'Runtime platform selection'],['../intro_guide.html#platform',1,'Runtime platform selection']]],
13
- ['pointer_10',['pointer',['../input_guide.html#joystick_userptr',1,'Joystick user pointer'],['../monitor_guide.html#monitor_userptr',1,'User pointer'],['../window_guide.html#window_userptr',1,'User pointer']]],
14
- ['pointer_20lifetimes_11',['Pointer lifetimes',['../intro_guide.html#lifetime',1,'']]],
15
- ['pointers_12',['pointers',['../context_guide.html#context_glext_proc',1,'Fetching function pointers'],['../vulkan_guide.html#vulkan_proc',1,'Querying Vulkan function pointers']]],
16
- ['polling_13',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
17
- ['position_14',['position',['../input_guide.html#cursor_pos',1,'Cursor position'],['../monitor_guide.html#monitor_pos',1,'Virtual position'],['../news.html#window_position_hint',1,'Window hints for initial window position'],['../window_guide.html#window_pos',1,'Window position']]],
18
- ['position_20changes_15',['Cursor position changes',['../moving_guide.html#moving_cursorpos',1,'']]],
19
- ['position_20replaced_20by_20scroll_20offsets_16',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
20
- ['presentation_20support_17',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
21
- ['processing_18',['processing',['../input_guide.html#events',1,'Event processing'],['../window_guide.html#window_events',1,'Window event processing']]],
22
- ['processing_20events_19',['Processing events',['../quick_guide.html#quick_process_events',1,'']]],
23
- ['properties_20',['Monitor properties',['../monitor_guide.html#monitor_properties',1,'']]],
24
- ['properties_20and_20events_21',['Window properties and events',['../window_guide.html#window_properties',1,'']]],
25
- ['protocol_20support_20has_20been_20removed_22',['wl_shell protocol support has been removed',['../news.html#wl_shell_removed',1,'']]],
26
- ['protocols_20and_20ipc_20standards_23',['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']]],
27
- ['public_20interface_24',['Public interface',['../internals_guide.html#internals_public',1,'']]],
28
- ['putting_20it_20together_25',['Putting it together',['../quick_guide.html#quick_example',1,'']]]
29
- ];
@@ -1,8 +0,0 @@
1
- var searchData=
2
- [
3
- ['querying_20for_20vulkan_20presentation_20support_0',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
4
- ['querying_20for_20vulkan_20support_1',['Querying for Vulkan support',['../vulkan_guide.html#vulkan_support',1,'']]],
5
- ['querying_20required_20vulkan_20extensions_2',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
6
- ['querying_20vulkan_20function_20pointers_3',['Querying Vulkan function pointers',['../vulkan_guide.html#vulkan_proc',1,'']]],
7
- ['quick_2emd_4',['quick.md',['../quick_8md.html',1,'']]]
8
- ];
@@ -1,44 +0,0 @@
1
- var searchData=
2
- [
3
- ['ramp_0',['Gamma ramp',['../monitor_guide.html#monitor_gamma',1,'']]],
4
- ['raw_20mouse_20motion_1',['Raw mouse motion',['../input_guide.html#raw_mouse_motion',1,'']]],
5
- ['readable_20name_2',['Human-readable name',['../monitor_guide.html#monitor_name',1,'']]],
6
- ['reading_20the_20timer_3',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
7
- ['reallocate_4',['reallocate',['../struct_g_l_f_wallocator.html#af5a674af9e170095b968f467233437be',1,'GLFWallocator']]],
8
- ['receiving_20input_20events_5',['Receiving input events',['../quick_guide.html#quick_key_input',1,'']]],
9
- ['red_6',['red',['../struct_g_l_f_wgammaramp.html#a2cce5d968734b685623eef913e635138',1,'GLFWgammaramp']]],
10
- ['redbits_7',['redBits',['../struct_g_l_f_wvidmode.html#a6066c4ecd251098700062d3b735dba1b',1,'GLFWvidmode']]],
11
- ['reentrancy_8',['Reentrancy',['../intro_guide.html#reentrancy',1,'']]],
12
- ['reference_9',['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']]],
13
- ['refresh_10',['Window damage and refresh',['../window_guide.html#window_refresh',1,'']]],
14
- ['refreshrate_11',['refreshRate',['../struct_g_l_f_wvidmode.html#a791bdd6c7697b09f7e9c97054bf05649',1,'GLFWvidmode']]],
15
- ['related_20attributes_12',['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']]],
16
- ['related_20hints_13',['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']]],
17
- ['release_20notes_20for_20earlier_20versions_14',['Release notes for earlier versions',['../news.html#news_archive',1,'']]],
18
- ['release_20notes_20for_20version_203_204_15',['Release notes for version 3.4',['../news.html',1,'']]],
19
- ['removal_20of_20automatic_20event_20polling_16',['Removal of automatic event polling',['../moving_guide.html#moving_autopoll',1,'']]],
20
- ['removal_20of_20character_20actions_17',['Removal of character actions',['../moving_guide.html#moving_char_up',1,'']]],
21
- ['removal_20of_20glfwcall_20macro_18',['Removal of GLFWCALL macro',['../moving_guide.html#moving_stdcall',1,'']]],
22
- ['removal_20of_20image_20and_20texture_20loading_19',['Removal of image and texture loading',['../moving_guide.html#moving_image',1,'']]],
23
- ['removal_20of_20threading_20functions_20',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
24
- ['removals_21',['Removals',['../news.html#removals',1,'']]],
25
- ['removed_22',['removed',['../news.html#use_osmesa_removed',1,'GLFW_USE_OSMESA CMake option has been removed'],['../news.html#use_wayland_removed',1,'GLFW_USE_WAYLAND CMake option has been removed'],['../news.html#vulkan_static_removed',1,'GLFW_VULKAN_STATIC CMake option has been removed'],['../news.html#corevideo_caveat',1,'macOS CoreVideo dependency has been removed'],['../news.html#wl_shell_removed',1,'wl_shell protocol support has been removed']]],
26
- ['removed_20features_23',['Changed and removed features',['../moving_guide.html#moving_removed',1,'']]],
27
- ['renamed_20functions_24',['Renamed functions',['../moving_guide.html#moving_renamed_functions',1,'']]],
28
- ['renamed_20library_20and_20header_20file_25',['Renamed library and header file',['../moving_guide.html#moving_renamed_files',1,'']]],
29
- ['renamed_20tokens_26',['Renamed tokens',['../moving_guide.html#moving_renamed_tokens',1,'']]],
30
- ['renamed_20types_27',['Renamed types',['../moving_guide.html#moving_renamed_types',1,'']]],
31
- ['rendering_20backend_20hint_28',['ANGLE rendering backend hint',['../news.html#angle_renderer_hint',1,'']]],
32
- ['rendering_20with_20opengl_29',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
33
- ['repeat_20action_30',['Key repeat action',['../moving_guide.html#moving_repeat',1,'']]],
34
- ['replaced_20by_20scroll_20offsets_31',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
35
- ['request_32',['Window attention request',['../window_guide.html#window_attention',1,'']]],
36
- ['required_20vulkan_20extensions_33',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
37
- ['requires_20doxygen_201_209_208_20or_20later_34',['Documentation generation requires Doxygen 1.9.8 or later',['../news.html#docs_target_caveat',1,'']]],
38
- ['requires_20dwm_20transparency_35',['Windows 7 framebuffer transparency requires DWM transparency',['../news.html#win7_framebuffer_caveat',1,'']]],
39
- ['retrieving_20monitors_36',['Retrieving monitors',['../monitor_guide.html#monitor_monitors',1,'']]],
40
- ['right_20libraries_37',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
41
- ['round_20trip_20to_20server_38',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
42
- ['run_20time_20version_39',['Run-time version',['../intro_guide.html#intro_version_runtime',1,'']]],
43
- ['runtime_20platform_20selection_40',['runtime platform selection',['../intro_guide.html#platform',1,'Runtime platform selection'],['../news.html#runtime_platform_selection',1,'Runtime platform selection']]]
44
- ];
@@ -1,60 +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
- ['scaling_2',['Window hint for framebuffer scaling',['../news.html#scale_framebuffer_hint',1,'']]],
6
- ['screen_20windows_3',['screen windows',['../window_guide.html#window_windowed_full_screen',1,'"Windowed full screen" windows'],['../window_guide.html#window_full_screen',1,'Full screen windows']]],
7
- ['scroll_20input_4',['Scroll input',['../input_guide.html#scrolling',1,'']]],
8
- ['scroll_20offsets_5',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
9
- ['selection_6',['selection',['../moving_guide.html#moving_monitor',1,'Explicit monitor selection'],['../news.html#runtime_platform_selection',1,'Runtime platform selection'],['../intro_guide.html#platform',1,'Runtime platform selection']]],
10
- ['separation_20of_20window_20and_20framebuffer_20sizes_7',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
11
- ['server_8',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
12
- ['sets_20of_20native_20access_20functions_9',['Multiple sets of native access functions',['../news.html#multiplatform_caveat',1,'']]],
13
- ['setting_10',['Cursor setting',['../input_guide.html#cursor_set',1,'']]],
14
- ['setting_20an_20error_20callback_11',['Setting an error callback',['../quick_guide.html#quick_capture_error',1,'']]],
15
- ['shapes_12',['shapes',['../news.html#more_cursor_shapes',1,'More standard cursor shapes'],['../group__shapes.html',1,'Standard cursor shapes']]],
16
- ['shared_20cmake_20options_13',['Shared CMake options',['../compile_guide.html#compile_options_shared',1,'']]],
17
- ['shared_20init_20hints_14',['Shared init hints',['../intro_guide.html#init_hints_shared',1,'']]],
18
- ['sharing_15',['Context object sharing',['../context_guide.html#context_sharing',1,'']]],
19
- ['show_20command_20hint_16',['Windows STARTUPINFO show command hint',['../news.html#win32_showdefault_hint',1,'']]],
20
- ['size_17',['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']]],
21
- ['size_20limits_18',['Window size limits',['../window_guide.html#window_sizelimits',1,'']]],
22
- ['sizes_19',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
23
- ['soft_20constraints_20',['Hard and soft constraints',['../window_guide.html#window_hints_hard',1,'']]],
24
- ['source_21',['With CMake and GLFW source',['../build_guide.html#build_link_cmake_source',1,'']]],
25
- ['specific_20cmake_20options_22',['specific cmake options',['../compile_guide.html#compile_options_macos',1,'macOS specific CMake options'],['../compile_guide.html#compile_options_unix',1,'Unix-like system specific CMake options'],['../compile_guide.html#compile_options_win32',1,'Win32 specific CMake options']]],
26
- ['specific_20hints_23',['specific hints',['../window_guide.html#window_hints_osx',1,'macOS specific hints'],['../window_guide.html#window_hints_win32',1,'Win32 specific hints']]],
27
- ['specific_20init_20hints_24',['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'],['../intro_guide.html#init_hints_x11',1,'X11 specific init hints']]],
28
- ['specific_20window_20hints_25',['specific window hints',['../window_guide.html#window_hints_wayland',1,'Wayland specific window hints'],['../window_guide.html#window_hints_x11',1,'X11 specific window hints']]],
29
- ['standard_20cursor_20creation_26',['Standard cursor creation',['../input_guide.html#cursor_standard',1,'']]],
30
- ['standard_20cursor_20shapes_27',['standard cursor shapes',['../news.html#more_cursor_shapes',1,'More standard cursor shapes'],['../group__shapes.html',1,'Standard cursor shapes']]],
31
- ['standards_28',['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
- ['standards_20conformance_29',['Standards conformance',['../compat_guide.html',1,'']]],
33
- ['started_30',['Getting started',['../quick_guide.html',1,'']]],
34
- ['startupinfo_20show_20command_20hint_31',['Windows STARTUPINFO show command hint',['../news.html#win32_showdefault_hint',1,'']]],
35
- ['states_32',['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']]],
36
- ['static_20functions_33',['Static functions',['../internals_guide.html#internals_static',1,'']]],
37
- ['step_34',['Step by step',['../quick_guide.html#quick_steps',1,'']]],
38
- ['step_20by_20step_35',['Step by step',['../quick_guide.html#quick_steps',1,'']]],
39
- ['string_36',['Version string',['../intro_guide.html#intro_version_string',1,'']]],
40
- ['string_20format_20has_20been_20changed_37',['Version string format has been changed',['../news.html#version_string_caveat',1,'']]],
41
- ['structure_38',['Internal structure',['../internals_guide.html',1,'']]],
42
- ['subproject_39',['Tests and examples are disabled when built as a subproject',['../news.html#standalone_caveat',1,'']]],
43
- ['support_40',['support',['../vulkan_guide.html#vulkan_present',1,'Querying for Vulkan presentation support'],['../vulkan_guide.html#vulkan_support',1,'Querying for Vulkan support'],['../moving_guide.html#moving_mbcs',1,'Win32 MBCS support']]],
44
- ['support_20for_20custom_20heap_20memory_20allocator_41',['Support for custom heap memory allocator',['../news.html#custom_heap_allocator',1,'']]],
45
- ['support_20for_20versions_20of_20windows_20older_20than_20xp_42',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
46
- ['support_20has_20been_20removed_43',['wl_shell protocol support has been removed',['../news.html#wl_shell_removed',1,'']]],
47
- ['support_20is_20deprecated_44',['support is deprecated',['../news.html#mingw_deprecated',1,'Original MinGW support is deprecated'],['../news.html#yosemite_deprecated',1,'OS X Yosemite support is deprecated'],['../news.html#winxp_deprecated',1,'Windows XP and Vista support is deprecated']]],
48
- ['support_20is_20initialized_20on_20demand_45',['Joystick support is initialized on demand',['../news.html#joystick_init_caveat',1,'']]],
49
- ['support_20reference_46',['Vulkan support reference',['../group__vulkan.html',1,'']]],
50
- ['supported_20and_20default_20values_47',['supported and default values',['../window_guide.html#window_hints_values',1,'Supported and default values'],['../intro_guide.html#init_hints_values',1,'Supported and default values']]],
51
- ['surface_48',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
52
- ['surface_20app_5fid_20hint_49',['Wayland surface app_id hint',['../news.html#wayland_app_id_hint',1,'']]],
53
- ['surface_20hint_50',['X11 Vulkan window surface hint',['../news.html#x11_xcb_vulkan_surface',1,'']]],
54
- ['swapping_51',['swapping',['../context_guide.html#context_swap',1,'Buffer swapping'],['../window_guide.html#buffer_swap',1,'Buffer swapping']]],
55
- ['swapping_20buffers_52',['Swapping buffers',['../quick_guide.html#quick_swap_buffers',1,'']]],
56
- ['symbols_53',['New symbols',['../news.html#new_symbols',1,'']]],
57
- ['system_20specific_20cmake_20options_54',['Unix-like system specific CMake options',['../compile_guide.html#compile_options_unix',1,'']]],
58
- ['system_20wide_20hotkeys_55',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
59
- ['systems_56',['systems',['../intro_guide.html#coordinate_systems',1,'Coordinate systems'],['../news.html#wayland_alpha_caveat',1,'Wayland framebuffer may lack alpha channel on older systems']]]
60
- ];
@@ -1,39 +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
- ['tests_20and_20examples_20are_20disabled_20when_20built_20as_20a_20subproject_3',['Tests and examples are disabled when built as a subproject',['../news.html#standalone_caveat',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_20gui_8',['Generating with the CMake GUI',['../compile_guide.html#compile_generate_gui',1,'']]],
12
- ['the_20glext_20h_20header_9',['The glext.h header',['../context_guide.html#context_glext_header',1,'']]],
13
- ['the_20glfw_20header_10',['Including the GLFW header',['../quick_guide.html#quick_include',1,'']]],
14
- ['the_20glfw_20header_20file_11',['Including the GLFW header file',['../build_guide.html#build_include',1,'']]],
15
- ['the_20library_12',['Compiling the library',['../compile_guide.html#compile_compile',1,'']]],
16
- ['the_20opengl_20context_20current_13',['Making the OpenGL context current',['../quick_guide.html#quick_context_current',1,'']]],
17
- ['the_20right_20libraries_14',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
18
- ['the_20timer_15',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
19
- ['the_20vulkan_20header_20file_16',['Including the Vulkan header file',['../vulkan_guide.html#vulkan_include',1,'']]],
20
- ['the_20vulkan_20loader_17',['Finding the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
21
- ['the_20window_18',['Creating the window',['../vulkan_guide.html#vulkan_window',1,'']]],
22
- ['the_20window_20close_20flag_19',['Checking the window close flag',['../quick_guide.html#quick_window_close',1,'']]],
23
- ['thread_20safety_20',['Thread safety',['../intro_guide.html#thread_safety',1,'']]],
24
- ['threading_20functions_21',['Removal of threading functions',['../moving_guide.html#moving_threads',1,'']]],
25
- ['time_20input_22',['Time input',['../input_guide.html#time',1,'']]],
26
- ['time_20version_23',['time version',['../intro_guide.html#intro_version_compile',1,'Compile-time version'],['../intro_guide.html#intro_version_runtime',1,'Run-time version']]],
27
- ['timer_24',['Reading the timer',['../quick_guide.html#quick_timer',1,'']]],
28
- ['title_25',['title',['../news.html#window_title_function',1,'Ability to get window title'],['../window_guide.html#window_title',1,'Window title']]],
29
- ['to_203_26',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
30
- ['to_20get_20window_20title_27',['Ability to get window title',['../news.html#window_title_function',1,'']]],
31
- ['to_20server_28',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
32
- ['to_20the_20api_29',['Introduction to the API',['../intro_guide.html',1,'']]],
33
- ['together_30',['Putting it together',['../quick_guide.html#quick_example',1,'']]],
34
- ['tokens_31',['tokens',['../group__keys.html',1,'Keyboard key tokens'],['../moving_guide.html#moving_renamed_tokens',1,'Renamed tokens']]],
35
- ['transparency_32',['Window transparency',['../window_guide.html#window_transparency',1,'']]],
36
- ['transparency_20requires_20dwm_20transparency_33',['Windows 7 framebuffer transparency requires DWM transparency',['../news.html#win7_framebuffer_caveat',1,'']]],
37
- ['trip_20to_20server_34',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
38
- ['types_35',['types',['../news.html#new_types',1,'New types'],['../moving_guide.html#moving_renamed_types',1,'Renamed types']]]
39
- ];
@@ -1,8 +0,0 @@
1
- var searchData=
2
- [
3
- ['unix_0',['With pkg-config and GLFW binaries on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
4
- ['unix_20like_20system_20specific_20cmake_20options_1',['Unix-like system specific CMake options',['../compile_guide.html#compile_options_unix',1,'']]],
5
- ['user_2',['user',['../struct_g_l_f_wallocator.html#af6153be74dbaf7f0a7e8bd3bfc039910',1,'GLFWallocator']]],
6
- ['user_20pointer_3',['user pointer',['../input_guide.html#joystick_userptr',1,'Joystick user pointer'],['../monitor_guide.html#monitor_userptr',1,'User pointer'],['../window_guide.html#window_userptr',1,'User pointer']]],
7
- ['using_20cmake_4',['Using CMake',['../compile_guide.html#compile_cmake',1,'']]]
8
- ];
@@ -1,32 +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_204_2',['Release notes for version 3.4',['../news.html',1,'']]],
6
- ['version_20and_20error_20reference_3',['Initialization, version and error reference',['../group__init.html',1,'']]],
7
- ['version_20compatibility_4',['Version compatibility',['../intro_guide.html#compatibility',1,'']]],
8
- ['version_20management_5',['Version management',['../intro_guide.html#intro_version',1,'']]],
9
- ['version_20string_6',['Version string',['../intro_guide.html#intro_version_string',1,'']]],
10
- ['version_20string_20format_20has_20been_20changed_7',['Version string format has been changed',['../news.html#version_string_caveat',1,'']]],
11
- ['versions_8',['Release notes for earlier versions',['../news.html#news_archive',1,'']]],
12
- ['versions_20of_20windows_20older_20than_20xp_9',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
13
- ['video_20mode_20enumeration_10',['Video mode enumeration',['../moving_guide.html#moving_video_modes',1,'']]],
14
- ['video_20modes_11',['Video modes',['../monitor_guide.html#monitor_modes',1,'']]],
15
- ['virtual_20position_12',['Virtual position',['../monitor_guide.html#monitor_pos',1,'']]],
16
- ['visibility_13',['Window visibility',['../window_guide.html#window_hide',1,'']]],
17
- ['vista_20support_20is_20deprecated_14',['Windows XP and Vista support is deprecated',['../news.html#winxp_deprecated',1,'']]],
18
- ['visual_20c_20and_20glfw_20binaries_15',['With Visual C++ and GLFW binaries',['../build_guide.html#build_link_win32',1,'']]],
19
- ['vulkan_20extensions_16',['Querying required Vulkan extensions',['../vulkan_guide.html#vulkan_ext',1,'']]],
20
- ['vulkan_20function_20pointers_17',['Querying Vulkan function pointers',['../vulkan_guide.html#vulkan_proc',1,'']]],
21
- ['vulkan_20guide_18',['Vulkan guide',['../vulkan_guide.html',1,'']]],
22
- ['vulkan_20header_20file_19',['Including the Vulkan header file',['../vulkan_guide.html#vulkan_include',1,'']]],
23
- ['vulkan_20loader_20',['Finding the Vulkan loader',['../vulkan_guide.html#vulkan_loader',1,'']]],
24
- ['vulkan_20loader_20and_20api_21',['Vulkan loader and API',['../compat_guide.html#compat_vulkan',1,'']]],
25
- ['vulkan_20presentation_20support_22',['Querying for Vulkan presentation support',['../vulkan_guide.html#vulkan_present',1,'']]],
26
- ['vulkan_20support_23',['Querying for Vulkan support',['../vulkan_guide.html#vulkan_support',1,'']]],
27
- ['vulkan_20support_20reference_24',['Vulkan support reference',['../group__vulkan.html',1,'']]],
28
- ['vulkan_20window_20surface_25',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
29
- ['vulkan_20window_20surface_20hint_26',['X11 Vulkan window surface hint',['../news.html#x11_xcb_vulkan_surface',1,'']]],
30
- ['vulkan_20wsi_20extensions_27',['Vulkan WSI extensions',['../compat_guide.html#compat_wsi',1,'']]],
31
- ['vulkan_2emd_28',['vulkan.md',['../vulkan_8md.html',1,'']]]
32
- ];
@@ -1,84 +0,0 @@
1
- var searchData=
2
- [
3
- ['w64_20and_20glfw_20binaries_0',['With MinGW-w64 and GLFW binaries',['../build_guide.html#build_link_mingw',1,'']]],
4
- ['wayland_20and_20x11_1',['Dependencies for Wayland and X11',['../compile_guide.html#compile_deps_wayland',1,'']]],
5
- ['wayland_20framebuffer_20may_20lack_20alpha_20channel_20on_20older_20systems_2',['Wayland framebuffer may lack alpha channel on older systems',['../news.html#wayland_alpha_caveat',1,'']]],
6
- ['wayland_20libdecor_20decorations_3',['Wayland libdecor decorations',['../news.html#wayland_libdecor_decorations',1,'']]],
7
- ['wayland_20protocols_20and_20ipc_20standards_4',['Wayland protocols and IPC standards',['../compat_guide.html#compat_wayland',1,'']]],
8
- ['wayland_20specific_20init_20hints_5',['Wayland specific init hints',['../intro_guide.html#init_hints_wayland',1,'']]],
9
- ['wayland_20specific_20window_20hints_6',['Wayland specific window hints',['../window_guide.html#window_hints_wayland',1,'']]],
10
- ['wayland_20surface_20app_5fid_20hint_7',['Wayland surface app_id hint',['../news.html#wayland_app_id_hint',1,'']]],
11
- ['wgl_20extensions_8',['WGL extensions',['../compat_guide.html#compat_wgl',1,'']]],
12
- ['wheel_20position_20replaced_20by_20scroll_20offsets_9',['Wheel position replaced by scroll offsets',['../moving_guide.html#moving_wheel',1,'']]],
13
- ['when_20built_20as_20a_20subproject_10',['Tests and examples are disabled when built as a subproject',['../news.html#standalone_caveat',1,'']]],
14
- ['wide_20hotkeys_11',['Capture of system-wide hotkeys',['../moving_guide.html#moving_syskeys',1,'']]],
15
- ['width_12',['width',['../struct_g_l_f_wvidmode.html#a698dcb200562051a7249cb6ae154c71d',1,'GLFWvidmode::width'],['../struct_g_l_f_wimage.html#af6a71cc999fe6d3aea31dd7e9687d835',1,'GLFWimage::width']]],
16
- ['win32_20mbcs_20support_13',['Win32 MBCS support',['../moving_guide.html#moving_mbcs',1,'']]],
17
- ['win32_20specific_20cmake_20options_14',['Win32 specific CMake options',['../compile_guide.html#compile_options_win32',1,'']]],
18
- ['win32_20specific_20hints_15',['Win32 specific hints',['../window_guide.html#window_hints_win32',1,'']]],
19
- ['window_16',['Creating the window',['../vulkan_guide.html#vulkan_window',1,'']]],
20
- ['window_20and_20context_17',['Creating a window and context',['../quick_guide.html#quick_create_window',1,'']]],
21
- ['window_20and_20framebuffer_20sizes_18',['Separation of window and framebuffer sizes',['../moving_guide.html#moving_hidpi',1,'']]],
22
- ['window_20attention_20request_19',['Window attention request',['../window_guide.html#window_attention',1,'']]],
23
- ['window_20attributes_20',['Window attributes',['../window_guide.html#window_attribs',1,'']]],
24
- ['window_20close_20flag_21',['Checking the window close flag',['../quick_guide.html#quick_window_close',1,'']]],
25
- ['window_20closing_20and_20close_20flag_22',['Window closing and close flag',['../window_guide.html#window_close',1,'']]],
26
- ['window_20closing_20changes_23',['Window closing changes',['../moving_guide.html#moving_window_close',1,'']]],
27
- ['window_20content_20scale_24',['Window content scale',['../window_guide.html#window_scale',1,'']]],
28
- ['window_20creation_25',['Window creation',['../window_guide.html#window_creation',1,'']]],
29
- ['window_20creation_20hints_26',['Window creation hints',['../window_guide.html#window_hints',1,'']]],
30
- ['window_20damage_20and_20refresh_27',['Window damage and refresh',['../window_guide.html#window_refresh',1,'']]],
31
- ['window_20destruction_28',['Window destruction',['../window_guide.html#window_destruction',1,'']]],
32
- ['window_20event_20processing_29',['Window event processing',['../window_guide.html#window_events',1,'']]],
33
- ['window_20guide_30',['Window guide',['../window_guide.html',1,'']]],
34
- ['window_20handle_20parameters_31',['Window handle parameters',['../moving_guide.html#moving_window_handles',1,'']]],
35
- ['window_20hint_20for_20framebuffer_20scaling_32',['Window hint for framebuffer scaling',['../news.html#scale_framebuffer_hint',1,'']]],
36
- ['window_20hints_33',['window hints',['../moving_guide.html#moving_hints',1,'Persistent window hints'],['../window_guide.html#window_hints_wayland',1,'Wayland specific window hints'],['../window_guide.html#window_hints_x11',1,'X11 specific window hints']]],
37
- ['window_20hints_20for_20initial_20window_20position_34',['Window hints for initial window position',['../news.html#window_position_hint',1,'']]],
38
- ['window_20icon_35',['Window icon',['../window_guide.html#window_icon',1,'']]],
39
- ['window_20iconification_36',['Window iconification',['../window_guide.html#window_iconify',1,'']]],
40
- ['window_20input_20focus_37',['Window input focus',['../window_guide.html#window_focus',1,'']]],
41
- ['window_20maximization_38',['Window maximization',['../window_guide.html#window_maximize',1,'']]],
42
- ['window_20menu_20keyboard_20access_20hint_39',['Windows window menu keyboard access hint',['../news.html#win32_keymenu_hint',1,'']]],
43
- ['window_20monitor_40',['Window monitor',['../window_guide.html#window_monitor',1,'']]],
44
- ['window_20objects_41',['Window objects',['../window_guide.html#window_object',1,'']]],
45
- ['window_20position_42',['window position',['../news.html#window_position_hint',1,'Window hints for initial window position'],['../window_guide.html#window_pos',1,'Window position']]],
46
- ['window_20properties_20and_20events_43',['Window properties and events',['../window_guide.html#window_properties',1,'']]],
47
- ['window_20reference_44',['Window reference',['../group__window.html',1,'']]],
48
- ['window_20related_20attributes_45',['Window related attributes',['../window_guide.html#window_attribs_wnd',1,'']]],
49
- ['window_20related_20hints_46',['Window related hints',['../window_guide.html#window_hints_wnd',1,'']]],
50
- ['window_20size_47',['Window size',['../window_guide.html#window_size',1,'']]],
51
- ['window_20size_20limits_48',['Window size limits',['../window_guide.html#window_sizelimits',1,'']]],
52
- ['window_20surface_49',['Creating a Vulkan window surface',['../vulkan_guide.html#vulkan_surface',1,'']]],
53
- ['window_20surface_20hint_50',['X11 Vulkan window surface hint',['../news.html#x11_xcb_vulkan_surface',1,'']]],
54
- ['window_20title_51',['window title',['../news.html#window_title_function',1,'Ability to get window title'],['../window_guide.html#window_title',1,'Window title']]],
55
- ['window_20transparency_52',['Window transparency',['../window_guide.html#window_transparency',1,'']]],
56
- ['window_20visibility_53',['Window visibility',['../window_guide.html#window_hide',1,'']]],
57
- ['window_2emd_54',['window.md',['../window_8md.html',1,'']]],
58
- ['windowed_20full_20screen_20windows_55',['"Windowed full screen" windows',['../window_guide.html#window_windowed_full_screen',1,'']]],
59
- ['windows_56',['windows',['../window_guide.html#window_windowed_full_screen',1,'"Windowed full screen" windows'],['../window_guide.html#window_full_screen',1,'Full screen windows']]],
60
- ['windows_207_20framebuffer_20transparency_20requires_20dwm_20transparency_57',['Windows 7 framebuffer transparency requires DWM transparency',['../news.html#win7_framebuffer_caveat',1,'']]],
61
- ['windows_20older_20than_20xp_58',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
62
- ['windows_20startupinfo_20show_20command_20hint_59',['Windows STARTUPINFO show command hint',['../news.html#win32_showdefault_hint',1,'']]],
63
- ['windows_20window_20menu_20keyboard_20access_20hint_60',['Windows window menu keyboard access hint',['../news.html#win32_keymenu_hint',1,'']]],
64
- ['windows_20without_20contexts_61',['Windows without contexts',['../context_guide.html#context_less',1,'']]],
65
- ['windows_20xp_20and_20vista_20support_20is_20deprecated_62',['Windows XP and Vista support is deprecated',['../news.html#winxp_deprecated',1,'']]],
66
- ['with_20a_20loader_20library_63',['Loading extension with a loader library',['../context_guide.html#context_glext_auto',1,'']]],
67
- ['with_20cmake_64',['Generating build files with CMake',['../compile_guide.html#compile_generate',1,'']]],
68
- ['with_20cmake_20and_20glfw_20source_65',['With CMake and GLFW source',['../build_guide.html#build_link_cmake_source',1,'']]],
69
- ['with_20cmake_20and_20installed_20glfw_20binaries_66',['With CMake and installed GLFW binaries',['../build_guide.html#build_link_cmake_package',1,'']]],
70
- ['with_20cmake_20and_20mingw_67',['Cross-compilation with CMake and MinGW',['../compile_guide.html#compile_mingw_cross',1,'']]],
71
- ['with_20command_20line_20cmake_68',['Generating with command-line CMake',['../compile_guide.html#compile_generate_cli',1,'']]],
72
- ['with_20command_20line_20or_20makefile_20on_20macos_69',['With command-line or makefile on macOS',['../build_guide.html#build_link_osx',1,'']]],
73
- ['with_20mingw_20w64_20and_20glfw_20binaries_70',['With MinGW-w64 and GLFW binaries',['../build_guide.html#build_link_mingw',1,'']]],
74
- ['with_20opengl_71',['Rendering with OpenGL',['../quick_guide.html#quick_render',1,'']]],
75
- ['with_20pkg_20config_20and_20glfw_20binaries_20on_20unix_72',['With pkg-config and GLFW binaries on Unix',['../build_guide.html#build_link_pkgconfig',1,'']]],
76
- ['with_20the_20cmake_20gui_73',['Generating with the CMake GUI',['../compile_guide.html#compile_generate_gui',1,'']]],
77
- ['with_20the_20right_20libraries_74',['Link with the right libraries',['../build_guide.html#build_link',1,'']]],
78
- ['with_20visual_20c_20and_20glfw_20binaries_75',['With Visual C++ and GLFW binaries',['../build_guide.html#build_link_win32',1,'']]],
79
- ['with_20xcode_20on_20macos_76',['With Xcode on macOS',['../build_guide.html#build_link_xcode',1,'']]],
80
- ['without_20contexts_77',['Windows without contexts',['../context_guide.html#context_less',1,'']]],
81
- ['wl_5fshell_20protocol_20support_20has_20been_20removed_78',['wl_shell protocol support has been removed',['../news.html#wl_shell_removed',1,'']]],
82
- ['work_20area_79',['Work area',['../monitor_guide.html#monitor_workarea',1,'']]],
83
- ['wsi_20extensions_80',['Vulkan WSI extensions',['../compat_guide.html#compat_wsi',1,'']]]
84
- ];
@@ -1,13 +0,0 @@
1
- var searchData=
2
- [
3
- ['x_20yosemite_20support_20is_20deprecated_0',['OS X Yosemite support is deprecated',['../news.html#yosemite_deprecated',1,'']]],
4
- ['x11_1',['Dependencies for Wayland and X11',['../compile_guide.html#compile_deps_wayland',1,'']]],
5
- ['x11_20empty_20events_20no_20longer_20round_20trip_20to_20server_2',['X11 empty events no longer round-trip to server',['../news.html#x11_emptyevent_caveat',1,'']]],
6
- ['x11_20extensions_20protocols_20and_20ipc_20standards_3',['X11 extensions, protocols and IPC standards',['../compat_guide.html#compat_x11',1,'']]],
7
- ['x11_20specific_20init_20hints_4',['X11 specific init hints',['../intro_guide.html#init_hints_x11',1,'']]],
8
- ['x11_20specific_20window_20hints_5',['X11 specific window hints',['../window_guide.html#window_hints_x11',1,'']]],
9
- ['x11_20vulkan_20window_20surface_20hint_6',['X11 Vulkan window surface hint',['../news.html#x11_xcb_vulkan_surface',1,'']]],
10
- ['xcode_20on_20macos_7',['With Xcode on macOS',['../build_guide.html#build_link_xcode',1,'']]],
11
- ['xp_8',['Support for versions of Windows older than XP',['../moving_guide.html#moving_windows',1,'']]],
12
- ['xp_20and_20vista_20support_20is_20deprecated_9',['Windows XP and Vista support is deprecated',['../news.html#winxp_deprecated',1,'']]]
13
- ];
@@ -1,4 +0,0 @@
1
- var searchData=
2
- [
3
- ['yosemite_20support_20is_20deprecated_0',['OS X Yosemite support is deprecated',['../news.html#yosemite_deprecated',1,'']]]
4
- ];
@@ -1,5 +0,0 @@
1
- var searchData=
2
- [
3
- ['3_0',['Moving from GLFW 2 to 3',['../moving_guide.html',1,'']]],
4
- ['3_204_1',['Release notes for version 3.4',['../news.html',1,'']]]
5
- ];
@@ -1,4 +0,0 @@
1
- var searchData=
2
- [
3
- ['4_0',['Release notes for version 3.4',['../news.html',1,'']]]
4
- ];
@@ -1,4 +0,0 @@
1
- var searchData=
2
- [
3
- ['7_20framebuffer_20transparency_20requires_20dwm_20transparency_0',['Windows 7 framebuffer transparency requires DWM transparency',['../news.html#win7_framebuffer_caveat',1,'']]]
4
- ];
@@ -1,4 +0,0 @@
1
- var searchData=
2
- [
3
- ['8_20or_20later_0',['Documentation generation requires Doxygen 1.9.8 or later',['../news.html#docs_target_caveat',1,'']]]
4
- ];
@@ -1,4 +0,0 @@
1
- var searchData=
2
- [
3
- ['9_208_20or_20later_0',['Documentation generation requires Doxygen 1.9.8 or later',['../news.html#docs_target_caveat',1,'']]]
4
- ];