19 lines
621 B
C
19 lines
621 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "framebufferdolphin.h"
|
|
|
|
typedef framebufferdolphin_t framebufferplatform_t;
|
|
|
|
#define frameBufferPlatformInitBackBuffer frameBufferInitBackBufferDolphin
|
|
#define frameBufferPlatformGetWidth frameBufferGetWidthDolphin
|
|
#define frameBufferPlatformGetHeight frameBufferGetHeightDolphin
|
|
#define frameBufferPlatformGetAspect frameBufferGetAspectDolphin
|
|
#define frameBufferPlatformBind frameBufferBindDolphin
|
|
#define frameBufferPlatformClear frameBufferClearDolphin
|