sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

SDL_kmsdrmdyn.h (1733B)


      1 /*
      2   Simple DirectMedia Layer
      3   Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
      4   Atomic KMSDRM backend by Manuel Alfayate Corchete <redwindwanderer@gmail.com>
      5 
      6   This software is provided 'as-is', without any express or implied
      7   warranty.  In no event will the authors be held liable for any damages
      8   arising from the use of this software.
      9 
     10   Permission is granted to anyone to use this software for any purpose,
     11   including commercial applications, and to alter it and redistribute it
     12   freely, subject to the following restrictions:
     13 
     14   1. The origin of this software must not be misrepresented; you must not
     15      claim that you wrote the original software. If you use this software
     16      in a product, an acknowledgment in the product documentation would be
     17      appreciated but is not required.
     18   2. Altered source versions must be plainly marked as such, and must not be
     19      misrepresented as being the original software.
     20   3. This notice may not be removed or altered from any source distribution.
     21 */
     22 
     23 #ifndef SDL_kmsdrmdyn_h_
     24 #define SDL_kmsdrmdyn_h_
     25 
     26 #include "../../SDL_internal.h"
     27 
     28 #include <xf86drm.h>
     29 #include <xf86drmMode.h>
     30 #include <gbm.h>
     31 
     32 #ifdef __cplusplus
     33 extern "C" {
     34 #endif
     35 
     36 int SDL_KMSDRM_LoadSymbols(void);
     37 void SDL_KMSDRM_UnloadSymbols(void);
     38 
     39 /* Declare all the function pointers and wrappers... */
     40 #define SDL_KMSDRM_SYM(rc,fn,params) \
     41     typedef rc (*SDL_DYNKMSDRMFN_##fn) params; \
     42     extern SDL_DYNKMSDRMFN_##fn KMSDRM_##fn;
     43 #define SDL_KMSDRM_SYM_CONST(type, name) \
     44     typedef type SDL_DYNKMSDRMCONST_##name; \
     45     extern SDL_DYNKMSDRMCONST_##name KMSDRM_##name;
     46 #include "SDL_kmsdrmsym.h"
     47 
     48 #ifdef __cplusplus
     49 }
     50 #endif
     51 
     52 #endif /* SDL_kmsdrmdyn_h_ */
     53 
     54 /* vi: set ts=4 sw=4 expandtab: */