14 lines
208 B
C++
14 lines
208 B
C++
#include <3ds.h>
|
|
#include "tests/gpu/gpu.h"
|
|
#include "tests/gpu/displaytransfer.h"
|
|
|
|
namespace GPU {
|
|
|
|
void TestAll() {
|
|
// Initialize GPU
|
|
GPU_Init(nullptr);
|
|
|
|
DisplayTransfer::TestAll();
|
|
}
|
|
|
|
} |