2014-06-06 01:49:51 -04:00
|
|
|
/*
|
2015-01-01 18:04:46 -05:00
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
2014-06-06 01:49:51 -04:00
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
|
|
*
|
|
|
|
* vim: set tabstop=4 expandtab:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BGFX_PLATFORM_C99_H_HEADER_GUARD
|
|
|
|
#define BGFX_PLATFORM_C99_H_HEADER_GUARD
|
|
|
|
|
|
|
|
// NOTICE:
|
|
|
|
// This header file contains platform specific interfaces. It is only
|
|
|
|
// necessary to use this header in conjunction with creating windows.
|
|
|
|
|
|
|
|
#include <bx/platform.h>
|
|
|
|
|
|
|
|
typedef enum bgfx_render_frame
|
|
|
|
{
|
|
|
|
BGFX_RENDER_FRAME_NO_CONTEXT,
|
|
|
|
BGFX_RENDER_FRAME_RENDER,
|
|
|
|
BGFX_RENDER_FRAME_EXITING,
|
|
|
|
|
|
|
|
BGFX_RENDER_FRAME_COUNT
|
|
|
|
|
|
|
|
} bgfx_render_frame_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WARNING: This call should be only used on platforms that don't
|
|
|
|
* allow creating separate rendering thread. If it is called before
|
|
|
|
* to bgfx_init, render thread won't be created by bgfx_init call.
|
|
|
|
*/
|
|
|
|
BGFX_C_API bgfx_render_frame_t bgfx_render_frame();
|
|
|
|
|
2015-04-20 19:22:40 -04:00
|
|
|
typedef struct bgfx_platform_data
|
|
|
|
{
|
|
|
|
void* ndt;
|
|
|
|
void* nwh;
|
|
|
|
void* context;
|
|
|
|
void* backbuffer;
|
2014-06-06 01:49:51 -04:00
|
|
|
|
2015-04-20 19:22:40 -04:00
|
|
|
} bgfx_platform_data_t;
|
2014-06-06 01:49:51 -04:00
|
|
|
|
2015-04-20 19:22:40 -04:00
|
|
|
BGFX_C_API void bgfx_set_platform_data(bgfx_platform_data_t* _pd);
|
2014-06-06 01:49:51 -04:00
|
|
|
|
|
|
|
#endif // BGFX_PLATFORM_C99_H_HEADER_GUARD
|