2012-04-06 06:16:19 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_SDL_H__
|
|
|
|
#define __COGL_SDL_H__
|
|
|
|
|
2013-11-28 12:36:08 -05:00
|
|
|
/* NB: this is a top-level header that can be included directly but we
|
|
|
|
* want to be careful not to define __COGL_H_INSIDE__ when this is
|
|
|
|
* included internally while building Cogl itself since
|
|
|
|
* __COGL_H_INSIDE__ is used in headers to guard public vs private api
|
|
|
|
* definitions
|
|
|
|
*/
|
|
|
|
#ifndef COGL_COMPILATION
|
|
|
|
|
|
|
|
/* Note: When building Cogl .gir we explicitly define
|
|
|
|
* __COGL_H_INSIDE__ */
|
|
|
|
#ifndef __COGL_H_INSIDE__
|
|
|
|
#define __COGL_H_INSIDE__
|
|
|
|
#define __COGL_SDL_H_MUST_UNDEF_COGL_H_INSIDE__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* COGL_COMPILATION */
|
|
|
|
|
2012-04-06 06:16:19 -04:00
|
|
|
#include <cogl/cogl-context.h>
|
2012-11-26 08:07:36 -05:00
|
|
|
#include <cogl/cogl-onscreen.h>
|
2012-04-06 06:16:19 -04:00
|
|
|
#include <SDL.h>
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2012-04-06 06:16:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:cogl-sdl
|
|
|
|
* @short_description: Integration api for the Simple DirectMedia
|
|
|
|
* Layer library.
|
|
|
|
*
|
|
|
|
* Cogl is a portable graphics api that can either be used standalone
|
|
|
|
* or alternatively integrated with certain existing frameworks. This
|
|
|
|
* api enables Cogl to be used in conjunction with the Simple
|
|
|
|
* DirectMedia Layer library.
|
|
|
|
*
|
|
|
|
* Using this API a typical SDL application would look something like
|
|
|
|
* this:
|
|
|
|
* |[
|
|
|
|
* MyAppData data;
|
2012-08-31 14:28:27 -04:00
|
|
|
* CoglError *error = NULL;
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
2012-05-28 09:49:35 -04:00
|
|
|
* data.ctx = cogl_sdl_context_new (SDL_USEREVENT, &error);
|
2012-04-06 06:16:19 -04:00
|
|
|
* if (!data.ctx)
|
|
|
|
* {
|
|
|
|
* fprintf (stderr, "Failed to create context: %s\n",
|
|
|
|
* error->message);
|
|
|
|
* return 1;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* my_application_setup (&data);
|
|
|
|
*
|
|
|
|
* data.redraw_queued = TRUE;
|
|
|
|
* while (!data.quit)
|
|
|
|
* {
|
|
|
|
* while (!data.quit)
|
|
|
|
* {
|
|
|
|
* if (!SDL_PollEvent (&event))
|
|
|
|
* {
|
|
|
|
* if (data.redraw_queued)
|
|
|
|
* break;
|
|
|
|
*
|
|
|
|
* cogl_sdl_idle (ctx);
|
|
|
|
* if (!SDL_WaitEvent (&event))
|
|
|
|
* {
|
|
|
|
* fprintf (stderr, "Error waiting for SDL events");
|
|
|
|
* return 1;
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* handle_event (&data, &event);
|
|
|
|
* cogl_sdl_handle_event (ctx, &event);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* data.redraw_queued = redraw (&data);
|
|
|
|
* }
|
|
|
|
* ]|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_context_new:
|
2012-12-31 17:08:44 -05:00
|
|
|
* @type: An SDL user event type between <constant>SDL_USEREVENT</constant> and
|
|
|
|
* <constant>SDL_NUMEVENTS</constant> - 1
|
2012-08-31 14:28:27 -04:00
|
|
|
* @error: A CoglError return location.
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
|
|
|
* This is a convenience function for creating a new #CoglContext for
|
|
|
|
* use with SDL and specifying what SDL user event type Cogl can use
|
|
|
|
* as a way to interrupt SDL_WaitEvent().
|
|
|
|
*
|
|
|
|
* This function is equivalent to the following code:
|
|
|
|
* |[
|
|
|
|
* CoglRenderer *renderer = cogl_renderer_new ();
|
|
|
|
* CoglDisplay *display;
|
|
|
|
*
|
|
|
|
* cogl_renderer_set_winsys_id (renderer, COGL_WINSYS_ID_SDL);
|
|
|
|
*
|
|
|
|
* cogl_sdl_renderer_set_event_type (renderer, type);
|
|
|
|
*
|
|
|
|
* if (!cogl_renderer_connect (renderer, error))
|
|
|
|
* return NULL;
|
|
|
|
*
|
|
|
|
* display = cogl_display_new (renderer, NULL);
|
|
|
|
* if (!cogl_display_setup (display, error))
|
|
|
|
* return NULL;
|
|
|
|
*
|
|
|
|
* return cogl_context_new (display, error);
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* <note>SDL applications are required to either use this API or
|
|
|
|
* to manually create a #CoglRenderer and call
|
|
|
|
* cogl_sdl_renderer_set_event_type().</note>
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
CoglContext *
|
2012-08-31 14:28:27 -04:00
|
|
|
cogl_sdl_context_new (int type, CoglError **error);
|
2012-04-06 06:16:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_renderer_set_event_type:
|
|
|
|
* @renderer: A #CoglRenderer
|
2012-12-31 17:08:44 -05:00
|
|
|
* @type: An SDL user event type between <constant>SDL_USEREVENT</constant> and
|
|
|
|
* <constant>SDL_NUMEVENTS</constant> - 1
|
2012-04-06 06:16:19 -04:00
|
|
|
*
|
|
|
|
* Tells Cogl what SDL user event type it can use as a way to
|
|
|
|
* interrupt SDL_WaitEvent() to ensure that cogl_sdl_handle_event()
|
|
|
|
* will be called in a finite amount of time.
|
|
|
|
*
|
|
|
|
* <note>This should only be called on an un-connected
|
|
|
|
* @renderer.</note>
|
|
|
|
*
|
|
|
|
* <note>For convenience most simple applications can use
|
|
|
|
* cogl_sdl_context_new() if they don't want to manually create
|
|
|
|
* #CoglRenderer and #CoglDisplay objects during
|
|
|
|
* initialization.</note>
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
void
|
2012-06-14 09:42:16 -04:00
|
|
|
cogl_sdl_renderer_set_event_type (CoglRenderer *renderer, int type);
|
2012-04-06 06:16:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_renderer_get_event_type:
|
|
|
|
* @renderer: A #CoglRenderer
|
|
|
|
*
|
|
|
|
* Queries what SDL user event type Cogl is using as a way to
|
|
|
|
* interrupt SDL_WaitEvent(). This is set either using
|
|
|
|
* cogl_sdl_context_new or by using
|
|
|
|
* cogl_sdl_renderer_set_event_type().
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
2012-06-14 09:42:16 -04:00
|
|
|
int
|
2012-04-06 06:16:19 -04:00
|
|
|
cogl_sdl_renderer_get_event_type (CoglRenderer *renderer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_handle_event:
|
|
|
|
* @context: A #CoglContext
|
|
|
|
* @event: An SDL event
|
|
|
|
*
|
|
|
|
* Passes control to Cogl so that it may dispatch any internal event
|
|
|
|
* callbacks in response to the given SDL @event. This function must
|
|
|
|
* be called for every SDL event.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
cogl_sdl_handle_event (CoglContext *context, SDL_Event *event);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_idle:
|
|
|
|
* @context: A #CoglContext
|
|
|
|
*
|
|
|
|
* Notifies Cogl that the application is idle and about to call
|
|
|
|
* SDL_WaitEvent(). Cogl may use this to run low priority book keeping
|
|
|
|
* tasks.
|
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
cogl_sdl_idle (CoglContext *context);
|
|
|
|
|
2012-11-26 08:07:36 -05:00
|
|
|
#if SDL_MAJOR_VERSION >= 2
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_sdl_onscreen_get_window:
|
|
|
|
* @onscreen: A #CoglOnscreen
|
|
|
|
*
|
2012-12-29 14:17:35 -05:00
|
|
|
* Returns: the underlying SDL_Window associated with an onscreen framebuffer.
|
2012-11-26 08:07:36 -05:00
|
|
|
*
|
|
|
|
* Since: 2.0
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
SDL_Window *
|
|
|
|
cogl_sdl_onscreen_get_window (CoglOnscreen *onscreen);
|
|
|
|
|
|
|
|
#endif /* SDL_MAJOR_VERSION */
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2012-04-06 06:16:19 -04:00
|
|
|
|
2013-11-28 12:36:08 -05:00
|
|
|
/* The gobject introspection scanner seems to parse public headers in
|
|
|
|
* isolation which means we need to be extra careful about how we
|
|
|
|
* define and undefine __COGL_H_INSIDE__ used to detect when internal
|
|
|
|
* headers are incorrectly included by developers. In the gobject
|
|
|
|
* introspection case we have to manually define __COGL_H_INSIDE__ as
|
|
|
|
* a commandline argument for the scanner which means we must be
|
|
|
|
* careful not to undefine it in a header...
|
|
|
|
*/
|
|
|
|
#ifdef __COGL_SDL_H_MUST_UNDEF_COGL_H_INSIDE__
|
|
|
|
#undef __COGL_H_INSIDE__
|
|
|
|
#undef __COGL_SDL_H_MUST_UNDEF_COGL_H_INSIDE__
|
|
|
|
#endif
|
|
|
|
|
2012-04-06 06:16:19 -04:00
|
|
|
#endif /* __COGL_SDL_H__ */
|