Wiki Page Content

Results 1 - 25 of 261 results out of about 6839 pages. (5.14 seconds)

SDL_GetError . . . 7 matches
... = SDL_GetError = Use this function to retrieve a message about the last error that occurred. <<TableOfContents()>> == Syntax == {{{#!highlight cpp const char* SDL_GetError(void...

1.3k - rev: 14 (current) last modified: 2016-05-11 20:27:55

SDL_CreateWindowAndRenderer . . . 5 matches
... NULL on error|| == Return Value == Returns 0 on success, or -1 on error; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h"...

2.6k - rev: 10 (current) last modified: 2015-11-18 20:47:21

SDL_CreateSoftwareRenderer . . . 4 matches
...rn Value == Returns a valid rendering context or NULL if there was an error; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

3.1k - rev: 10 (current) last modified: 2016-03-31 22:22:10

SDL_VideoInit . . . 3 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

1.9k - rev: 11 (current) last modified: 2013-10-13 12:37:21

SDL_GL_SetAttribute . . . 3 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp SDL_Window *windo...

2.0k - rev: 15 (current) last modified: 2015-04-26 19:19:56

SDL_CreateTextureFromSurface . . . 3 matches
...exture|| == Return Value == Returns the created texture or NULL on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp Uint32 rmask, gma...

1.9k - rev: 28 (current) last modified: 2017-08-11 23:59:53

SDL_SaveBMP . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp ... SDL...

1.2k - rev: 9 (current) last modified: 2020-07-24 17:18:55

SDL_OpenAudioDevice . . . 2 matches
...n Value == Returns a valid device ID that is > 0 on success or 0 on failure; call [[SDL_GetError]]() for more information. For compatibility with SDL 1.2, this will never return 1...

4.8k - rev: 26 (current) last modified: 2017-03-30 12:26:07

SDL_OpenAudio . . . 2 matches
...e on failure to open the audio device or failure to set up the audio thread; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp SDL_AudioSpec wan...

2.8k - rev: 23 (current) last modified: 2018-10-01 10:02:23

SDL_LoadWAV_RW . . . 2 matches
... the wave file cannot be opened, uses an unknown data format, or is corrupt; call [[SDL_GetError]]() for more information. When the application is done with the data returned in '...

2.1k - rev: 15 (current) last modified: 2018-10-30 02:25:29

SDL_Init . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

2.4k - rev: 52 (current) last modified: 2017-04-08 21:22:04

SDL_GetWindowWMInfo . . . 2 matches
...''' struct is valid, or SDL_FALSE if the information could not be retrieved; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

3.0k - rev: 18 (current) last modified: 2016-10-13 20:36:31

SDL_GetDisplayMode . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp int display_c...

1.7k - rev: 14 (current) last modified: 2014-06-29 22:03:03

SDL_GetDisplayBounds . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp SDL_Rect r; if (S...

0.9k - rev: 8 (current) last modified: 2014-06-22 07:46:28

SDL_GetDesktopDisplayMode . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp SDL_DisplayMode d...

1.2k - rev: 14 (current) last modified: 2014-06-22 11:22:22

SDL_GetCurrentDisplayMode . . . 2 matches
...== Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp // Using SDL2's ...

1.9k - rev: 25 (current) last modified: 2016-04-15 22:08:43

SDL_GameControllerOpen . . . 2 matches
...n Value == Returns a gamecontroller identifier or NULL if an error occurred; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp /* Open the firs...

1.6k - rev: 9 (current) last modified: 2016-04-10 22:49:34

SDL_CreateWindow . . . 2 matches
... == Return Value == Returns the window that was created or NULL on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp // Example progra...

4.2k - rev: 34 (current) last modified: 2018-09-04 21:50:13

SDL_CreateThread . . . 2 matches
...e new thread object on success, NULL if the new thread could not be created; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include <stdio.h...

2.8k - rev: 28 (current) last modified: 2019-01-21 19:12:12

SDL_CreateTexture . . . 2 matches
...ctive, the format was unsupported, or the width or height were out of range; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

3.3k - rev: 29 (current) last modified: 2016-04-10 22:54:56

SDL_CreateRGBSurfaceWithFormatFrom . . . 2 matches
...Return Value == Returns a new [[SDL_Surface]] on success or NULL on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp // This example ...

3.2k - rev: 7 (current) last modified: 2016-10-20 20:45:29

SDL_CreateRGBSurfaceWithFormat . . . 2 matches
...Return Value == Returns a new [[SDL_Surface]] on success or NULL on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp /* Create a ...

1.9k - rev: 6 (current) last modified: 2016-10-20 20:43:22

SDL_CreateRGBSurfaceFrom . . . 2 matches
...turns the new [[SDL_Surface]] structure that is created or NULL if it fails; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp // This example s...

3.4k - rev: 15 (current) last modified: 2016-10-20 20:40:54

SDL_CreateRGBSurface . . . 2 matches
...turns the new [[SDL_Surface]] structure that is created or NULL if it fails; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp /* Create a 3...

3.0k - rev: 15 (current) last modified: 2016-10-20 20:36:00

SDL_CreateColorCursor . . . 2 matches
...|| == Return Value == Returns the new cursor on success or NULL on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" ...

2.3k - rev: 5 (current) last modified: 2016-04-15 21:44:51

1 2 3 4 5 6 7 8 9 10 Next
(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit