Wiki Page Content

Differences between revisions 1 and 2
Revision 1 as of 2009-11-19 18:27:06
Size: 1490
Editor: SheenaSmith
Comment: create page, add content
Revision 2 as of 2009-11-19 18:29:57
Size: 1498
Editor: SheenaSmith
Comment: format adjustments
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
||SDL_WINDOW_FULLSCREEN||||SDL_WINDOW_OPENGL||
||SDL_WINDOW_SHOWN||||SDL_WINDOW_BORDERLESS||
||SDL_WINDOW_RESIZABLE||||SDL_WINDOW_MAXIMIZED||
||SDL_WINDOW_MINIMIZED||||SDL_WINDOW_INPUT_GRABBED||
||SDL_WINDOW_FULLSCREEN||
||SDL_WINDOW_OPENGL||
||SDL_WINDOW_SHOWN||
||SDL_WINDOW_BORDERLESS||
||SDL_WINDOW_RESIZABLE||
||SDL_WINDOW_MAXIMIZED||
||SDL_WINDOW_MINIMIZED||
||SDL_WINDOW_INPUT_GRABBED||

SDL_CreateWindow

Use this function to create a window with the specified position, dimensions, and flags.

Syntax

SDL_WindowID SDL_CreateWindow(const char* title,
                              int         x,
                              int         y,
                              int         w,
                              int         h,
                              Uint32      flags)

Function Parameters

title

the title of the window, in UTF-8 encoding

x

the x position of the window, SDL_WINDOWPOS_CENTERED, or SDL_WINDOWPOS_UNDEFINED

y

the y position of the window, SDL_WINDOWPOS_CENTERED, or SDL_WINDOWPOS_UNDEFINED

w

the width of the window

h

the height of the window

flags

the flags for the window; see Remarks for details

Return Value

The ID of the window created, or 0 if window creation failed; call SDL_GetError() for more information.

Code Examples

You can add your code example here

Remarks

flags may be a mask of any of the following:

SDL_WINDOW_FULLSCREEN

SDL_WINDOW_OPENGL

SDL_WINDOW_SHOWN

SDL_WINDOW_BORDERLESS

SDL_WINDOW_RESIZABLE

SDL_WINDOW_MAXIMIZED

SDL_WINDOW_MINIMIZED

SDL_WINDOW_INPUT_GRABBED

None: SDL_CreateWindow (last edited 2018-09-04 21:50:13 by ninepoints)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit