raygui-widget
|
Error codes. More...
![]() |
Macros | |
#define | GLFW_NO_ERROR 0 |
No error has occurred. More... | |
#define | GLFW_NOT_INITIALIZED 0x00010001 |
GLFW has not been initialized. More... | |
#define | GLFW_NO_CURRENT_CONTEXT 0x00010002 |
No context is current for this thread. More... | |
#define | GLFW_INVALID_ENUM 0x00010003 |
One of the arguments to the function was an invalid enum value. More... | |
#define | GLFW_INVALID_VALUE 0x00010004 |
One of the arguments to the function was an invalid value. More... | |
#define | GLFW_OUT_OF_MEMORY 0x00010005 |
A memory allocation failed. More... | |
#define | GLFW_API_UNAVAILABLE 0x00010006 |
GLFW could not find support for the requested API on the system. More... | |
#define | GLFW_VERSION_UNAVAILABLE 0x00010007 |
The requested OpenGL or OpenGL ES version is not available. More... | |
#define | GLFW_PLATFORM_ERROR 0x00010008 |
A platform-specific error occurred that does not match any of the more specific categories. More... | |
#define | GLFW_FORMAT_UNAVAILABLE 0x00010009 |
The requested format is not supported or available. More... | |
#define | GLFW_NO_WINDOW_CONTEXT 0x0001000A |
The specified window does not have an OpenGL or OpenGL ES context. More... | |
#define | GLFW_NO_ERROR 0 |
No error has occurred. More... | |
#define | GLFW_NOT_INITIALIZED 0x00010001 |
GLFW has not been initialized. More... | |
#define | GLFW_NO_CURRENT_CONTEXT 0x00010002 |
No context is current for this thread. More... | |
#define | GLFW_INVALID_ENUM 0x00010003 |
One of the arguments to the function was an invalid enum value. More... | |
#define | GLFW_INVALID_VALUE 0x00010004 |
One of the arguments to the function was an invalid value. More... | |
#define | GLFW_OUT_OF_MEMORY 0x00010005 |
A memory allocation failed. More... | |
#define | GLFW_API_UNAVAILABLE 0x00010006 |
GLFW could not find support for the requested API on the system. More... | |
#define | GLFW_VERSION_UNAVAILABLE 0x00010007 |
The requested OpenGL or OpenGL ES version is not available. More... | |
#define | GLFW_PLATFORM_ERROR 0x00010008 |
A platform-specific error occurred that does not match any of the more specific categories. More... | |
#define | GLFW_FORMAT_UNAVAILABLE 0x00010009 |
The requested format is not supported or available. More... | |
#define | GLFW_NO_WINDOW_CONTEXT 0x0001000A |
The specified window does not have an OpenGL or OpenGL ES context. More... | |
#define | GLFW_CURSOR_UNAVAILABLE 0x0001000B |
The specified cursor shape is not available. More... | |
#define | GLFW_FEATURE_UNAVAILABLE 0x0001000C |
The requested feature is not provided by the platform. More... | |
#define | GLFW_FEATURE_UNIMPLEMENTED 0x0001000D |
The requested feature is not implemented for the platform. More... | |
#define | GLFW_PLATFORM_UNAVAILABLE 0x0001000E |
Platform unavailable or no matching platform was found. More... | |
Error codes.
See error handling for how these are used.
#define GLFW_API_UNAVAILABLE 0x00010006 |
GLFW could not find support for the requested API on the system.
GLFW could not find support for the requested API on the system.
The installed graphics driver does not support the requested API, or does not support it via the chosen context creation backend. Below are a few examples.
#define GLFW_API_UNAVAILABLE 0x00010006 |
GLFW could not find support for the requested API on the system.
GLFW could not find support for the requested API on the system.
The installed graphics driver does not support the requested API, or does not support it via the chosen context creation API. Below are a few examples.
#define GLFW_CURSOR_UNAVAILABLE 0x0001000B |
The specified cursor shape is not available.
The specified standard cursor shape is not available, either because the current platform cursor theme does not provide it or because it is not available on the platform.
Platform or system settings limitation. Pick another standard cursor shape or create a custom cursor.
#define GLFW_FEATURE_UNAVAILABLE 0x0001000C |
The requested feature is not provided by the platform.
The requested feature is not provided by the platform, so GLFW is unable to implement it. The documentation for each function notes if it could emit this error.
Platform or platform version limitation. The error can be ignored unless the feature is critical to the application.
#define GLFW_FEATURE_UNIMPLEMENTED 0x0001000D |
The requested feature is not implemented for the platform.
The requested feature has not yet been implemented in GLFW for this platform.
An incomplete implementation of GLFW for this platform, hopefully fixed in a future release. The error can be ignored unless the feature is critical to the application.
#define GLFW_FORMAT_UNAVAILABLE 0x00010009 |
The requested format is not supported or available.
If emitted during window creation, the requested pixel format is not supported.
If emitted when querying the clipboard, the contents of the clipboard could not be converted to the requested format.
If emitted during window creation, one or more hard constraints did not match any of the available pixel formats. If your application is sufficiently flexible, downgrade your requirements and try again. Otherwise, inform the user that their machine does not match your requirements.
#define GLFW_FORMAT_UNAVAILABLE 0x00010009 |
The requested format is not supported or available.
If emitted during window creation, the requested pixel format is not supported.
If emitted when querying the clipboard, the contents of the clipboard could not be converted to the requested format.
If emitted during window creation, one or more hard constraints did not match any of the available pixel formats. If your application is sufficiently flexible, downgrade your requirements and try again. Otherwise, inform the user that their machine does not match your requirements.
#define GLFW_INVALID_ENUM 0x00010003 |
One of the arguments to the function was an invalid enum value.
One of the arguments to the function was an invalid enum value, for example requesting GLFW_RED_BITS with glfwGetWindowAttrib.
Application programmer error. Fix the offending call.
#define GLFW_INVALID_ENUM 0x00010003 |
One of the arguments to the function was an invalid enum value.
One of the arguments to the function was an invalid enum value, for example requesting GLFW_RED_BITS with glfwGetWindowAttrib.
Application programmer error. Fix the offending call.
#define GLFW_INVALID_VALUE 0x00010004 |
One of the arguments to the function was an invalid value.
One of the arguments to the function was an invalid value, for example requesting a non-existent OpenGL or OpenGL ES version like 2.7.
Requesting a valid but unavailable OpenGL or OpenGL ES version will instead result in a GLFW_VERSION_UNAVAILABLE error.
Application programmer error. Fix the offending call.
#define GLFW_INVALID_VALUE 0x00010004 |
One of the arguments to the function was an invalid value.
One of the arguments to the function was an invalid value, for example requesting a non-existent OpenGL or OpenGL ES version like 2.7.
Requesting a valid but unavailable OpenGL or OpenGL ES version will instead result in a GLFW_VERSION_UNAVAILABLE error.
Application programmer error. Fix the offending call.
#define GLFW_NO_CURRENT_CONTEXT 0x00010002 |
No context is current for this thread.
This occurs if a GLFW function was called that needs and operates on the current OpenGL or OpenGL ES context but no context is current on the calling thread. One such function is glfwSwapInterval.
Application programmer error. Ensure a context is current before calling functions that require a current context.
#define GLFW_NO_CURRENT_CONTEXT 0x00010002 |
No context is current for this thread.
This occurs if a GLFW function was called that needs and operates on the current OpenGL or OpenGL ES context but no context is current on the calling thread. One such function is glfwSwapInterval.
Application programmer error. Ensure a context is current before calling functions that require a current context.
#define GLFW_NO_ERROR 0 |
No error has occurred.
No error has occurred.
Yay.
#define GLFW_NO_ERROR 0 |
No error has occurred.
No error has occurred.
Yay.
#define GLFW_NO_WINDOW_CONTEXT 0x0001000A |
The specified window does not have an OpenGL or OpenGL ES context.
A window that does not have an OpenGL or OpenGL ES context was passed to a function that requires it to have one.
Application programmer error. Fix the offending call.
#define GLFW_NO_WINDOW_CONTEXT 0x0001000A |
The specified window does not have an OpenGL or OpenGL ES context.
A window that does not have an OpenGL or OpenGL ES context was passed to a function that requires it to have one.
Application programmer error. Fix the offending call.
#define GLFW_NOT_INITIALIZED 0x00010001 |
GLFW has not been initialized.
This occurs if a GLFW function was called that must not be called unless the library is initialized.
Application programmer error. Initialize GLFW before calling any function that requires initialization.
#define GLFW_NOT_INITIALIZED 0x00010001 |
GLFW has not been initialized.
This occurs if a GLFW function was called that must not be called unless the library is initialized.
Application programmer error. Initialize GLFW before calling any function that requires initialization.
#define GLFW_OUT_OF_MEMORY 0x00010005 |
A memory allocation failed.
A memory allocation failed.
A bug in GLFW or the underlying operating system. Report the bug to our issue tracker.
#define GLFW_OUT_OF_MEMORY 0x00010005 |
A memory allocation failed.
A memory allocation failed.
A bug in GLFW or the underlying operating system. Report the bug to our issue tracker.
#define GLFW_PLATFORM_ERROR 0x00010008 |
A platform-specific error occurred that does not match any of the more specific categories.
A platform-specific error occurred that does not match any of the more specific categories.
A bug or configuration error in GLFW, the underlying operating system or its drivers, or a lack of required resources. Report the issue to our issue tracker.
#define GLFW_PLATFORM_ERROR 0x00010008 |
A platform-specific error occurred that does not match any of the more specific categories.
A platform-specific error occurred that does not match any of the more specific categories.
A bug or configuration error in GLFW, the underlying operating system or its drivers, or a lack of required resources. Report the issue to our issue tracker.
#define GLFW_PLATFORM_UNAVAILABLE 0x0001000E |
Platform unavailable or no matching platform was found.
If emitted during initialization, no matching platform was found. If the GLFW_PLATFORM init hint was set to GLFW_ANY_PLATFORM
, GLFW could not detect any of the platforms supported by this library binary, except for the Null platform. If the init hint was set to a specific platform, it is either not supported by this library binary or GLFW was not able to detect it.
If emitted by a native access function, GLFW was initialized for a different platform than the function is for.
Failure to detect any platform usually only happens on non-macOS Unix systems, either when no window system is running or the program was run from a terminal that does not have the necessary environment variables. Fall back to a different platform if possible or notify the user that no usable platform was detected.
Failure to detect a specific platform may have the same cause as above or be because support for that platform was not compiled in. Call glfwPlatformSupported to check whether a specific platform is supported by a library binary.
#define GLFW_VERSION_UNAVAILABLE 0x00010007 |
The requested OpenGL or OpenGL ES version is not available.
The requested OpenGL or OpenGL ES version (including any requested context or framebuffer hints) is not available on this machine.
The machine does not support your requirements. If your application is sufficiently flexible, downgrade your requirements and try again. Otherwise, inform the user that their machine does not match your requirements.
#define GLFW_VERSION_UNAVAILABLE 0x00010007 |
The requested OpenGL or OpenGL ES version is not available.
The requested OpenGL or OpenGL ES version (including any requested context or framebuffer hints) is not available on this machine.
The machine does not support your requirements. If your application is sufficiently flexible, downgrade your requirements and try again. Otherwise, inform the user that their machine does not match your requirements.