mirror of
https://github.com/switchbrew/switch-examples.git
synced 2025-06-21 13:22:40 +02:00
10 lines
298 B
C
10 lines
298 B
C
/*
|
|
** Sample Framework for deko3d Applications
|
|
** FileLoader.h: Helpers for loading data from the filesystem directly into GPU memory
|
|
*/
|
|
#pragma once
|
|
#include "common.h"
|
|
#include "CMemPool.h"
|
|
|
|
CMemPool::Handle LoadFile(CMemPool& pool, const char* path, uint32_t alignment = DK_CMDMEM_ALIGNMENT);
|