module Espresso
Overview
Lightweight wrapper around GLFW for Crystal.
Included Modules
- Espresso::EnumCopy
- Espresso::ErrorHandling
- Espresso::WindowTopic
Extended Modules
- Espresso
- Espresso::ErrorHandling
Defined in:
espresso.crespresso/bounds.cr
espresso/class_topic.cr
espresso/client_api.cr
espresso/context_creation_api.cr
espresso/context_robustness.cr
espresso/coordinates.cr
espresso/enum_copy.cr
espresso/error_handling.cr
espresso/errors/api_unavailable_error.cr
espresso/errors/format_unavailable_error.cr
espresso/errors/glfw_error.cr
espresso/errors/invalid_enum_error.cr
espresso/errors/invalid_value_error.cr
espresso/errors/no_current_context_error.cr
espresso/errors/no_window_context_error.cr
espresso/errors/not_initialized_error.cr
espresso/errors/out_of_memory_error.cr
espresso/errors/platform_error.cr
espresso/errors/version_unavailable_error.cr
espresso/events/joystick_connect_event.cr
espresso/events/keyboard_char_event.cr
espresso/events/keyboard_char_mods_event.cr
espresso/events/keyboard_event.cr
espresso/events/keyboard_key_event.cr
espresso/events/monitor_connect_event.cr
espresso/events/mouse_button_event.cr
espresso/events/mouse_enter_event.cr
espresso/events/mouse_event.cr
espresso/events/mouse_move_event.cr
espresso/events/mouse_scroll_event.cr
espresso/events/window_closing_event.cr
espresso/events/window_drop_event.cr
espresso/events/window_event.cr
espresso/events/window_focus_event.cr
espresso/events/window_iconify_event.cr
espresso/events/window_maximize_event.cr
espresso/events/window_move_event.cr
espresso/events/window_refresh_event.cr
espresso/events/window_resize_event.cr
espresso/events/window_scale_event.cr
espresso/frame_size.cr
espresso/image.cr
espresso/input/button_state.cr
espresso/input/joystick.cr
espresso/input/joystick/events.cr
espresso/input/joystick/gamepad_axis.cr
espresso/input/joystick/gamepad_button.cr
espresso/input/joystick/gamepad_state.cr
espresso/input/joystick/joystick_connect_topic.cr
espresso/input/joystick/joystick_hat_state.cr
espresso/input/joystick/joystick_user_data.cr
espresso/input/keyboard.cr
espresso/input/keyboard/events.cr
espresso/input/keyboard/key.cr
espresso/input/keyboard/key_state.cr
espresso/input/keyboard/modifier_key.cr
espresso/input/keyboard/topics.cr
espresso/input/keyboard/window_user_data.cr
espresso/input/mouse.cr
espresso/input/mouse/cursor.cr
espresso/input/mouse/cursor_mode.cr
espresso/input/mouse/cursor_shape.cr
espresso/input/mouse/events.cr
espresso/input/mouse/mouse_button.cr
espresso/input/mouse/topics.cr
espresso/input/mouse/window_user_data.cr
espresso/instance_topic.cr
espresso/monitor.cr
espresso/monitor/events.cr
espresso/monitor/gamma_ramp.cr
espresso/monitor/monitor_connect_topic.cr
espresso/monitor/monitor_user_data.cr
espresso/monitor/video_mode.cr
espresso/opengl_profile.cr
espresso/position.cr
espresso/release_behavior.cr
espresso/scale.cr
espresso/size.cr
espresso/timer.cr
espresso/topic.cr
espresso/user_data.cr
espresso/window.cr
espresso/window/attributes.cr
espresso/window/events.cr
espresso/window/topics.cr
espresso/window/window_builder.cr
espresso/window/window_topic.cr
espresso/window/window_user_data.cr
Constant Summary
-
VERSION =
{{ (`shards version \"/srv/crystaldoc.info/github-icy-arctic-fox-espresso-v0.2.1/src\"`).stringify.chomp }}
-
Current version of the shard.
Instance Method Summary
-
#compiled_version : SemanticVersion
Version of GLFW that Espresso was compiled against.
-
#init(joystick_hat_buttons : Bool | Nil = nil, cocoa_chdir_resources : Bool | Nil = nil, cocoa_menubar : Bool | Nil = nil) : Nil
Prepares GLFW so that it can be used.
-
#run(joystick_hat_buttons : Bool | Nil = nil, cocoa_chdir_resources : Bool | Nil = nil, cocoa_menubar : Bool | Nil = nil, &)
Initializes GLFW and yields for the duration it is usable.
-
#runtime_version : SemanticVersion
Version of GLFW that is loaded and in-use by Espresso.
-
#terminate : Nil
Cleans up resources used by GLFW and and changes it made to the system.
-
#version : SemanticVersion
Version of GLFW that is loaded and in-use by Espresso.
-
#version_string : String
Compiled version string produced by GLFW.
Instance Method Detail
Version of GLFW that Espresso was compiled against.
This should match #runtime_version
to have consistent/expected behavior.
Version of GLFW that is loaded and in-use by Espresso.
This should match #compiled_version
to have consistent/expected behavior.
Cleans up resources used by GLFW and and changes it made to the system. This method must be called after GLFW is no longer used and before the program exits. Once GLFW is terminated, it must be reinitialized before using it again.
Calling this method when GLFW is already terminated does nothing.
A PlatformError
can be raised if GLFW couldn't be terminated.
Compiled version string produced by GLFW. Includes the version string and additional compilation and environment information.