9 lines
348 B
C
9 lines
348 B
C
typedef struct SDL_GPUDevice SDL_GPUDevice;
|
|
|
|
typedef enum SDL_GPUPrimitiveType {
|
|
SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, /**< A series of separate triangles. */
|
|
SDL_GPU_PRIMITIVETYPE_TRIANGLESTRIP /**< A series of connected triangles. */
|
|
} SDL_GPUPrimitiveType;
|
|
|
|
extern SDL_DECLSPEC SDL_GPUDevice* SDLCALL SDL_CreateGPUDevice(bool debug_mode);
|