Permalink
Please sign in to comment.
| @@ -0,0 +1,35 @@ | ||
| +/* Copyright (c) 2013-2017 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 M_CACHE_SET_H | ||
| +#define M_CACHE_SET_H | ||
| + | ||
| +#include <mgba-util/common.h> | ||
| + | ||
| +CXX_GUARD_START | ||
| + | ||
| +#include <mgba/core/map-cache.h> | ||
| +#include <mgba/core/tile-cache.h> | ||
| +#include <mgba-util/vector.h> | ||
| + | ||
| +DECLARE_VECTOR(mMapCacheSet, struct mMapCache); | ||
| +DECLARE_VECTOR(mTileCacheSet, struct mTileCache); | ||
| + | ||
| +struct mCacheSet { | ||
| + struct mMapCacheSet maps; | ||
| + struct mTileCacheSet tiles; | ||
| +}; | ||
| + | ||
| +void mCacheSetInit(struct mCacheSet*, size_t nMaps, size_t nTiles); | ||
| +void mCacheSetDeinit(struct mCacheSet*); | ||
| + | ||
| +void mCacheSetAssignVRAM(struct mCacheSet*, void* vram); | ||
| + | ||
| +void mCacheSetWriteVRAM(struct mCacheSet*, uint32_t address); | ||
| +void mCacheSetWritePalette(struct mCacheSet*, uint32_t entry, color_t color); | ||
| + | ||
| +CXX_GUARD_END | ||
| + | ||
| +#endif |
Oops, something went wrong.
0 comments on commit
d1e96a0