agb/mgba-test-runner/c/include/mgba/internal/gba/renderers/common.h

27 lines
635 B
C
Raw Normal View History

2021-04-20 07:21:44 +10:00
/* Copyright (c) 2013-2019 Jeffrey Pfau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef GBA_RENDERER_COMMON_H
#define GBA_RENDERER_COMMON_H
#include <mgba-util/common.h>
CXX_GUARD_START
#include <mgba/internal/gba/video.h>
struct GBAVideoRendererSprite {
struct GBAObj obj;
int16_t y;
int16_t endY;
int16_t cycles;
int8_t index;
};
int GBAVideoRendererCleanOAM(struct GBAObj* oam, struct GBAVideoRendererSprite* sprites, int offsetY);
CXX_GUARD_END
#endif