mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 04:52:39 +02:00
15 lines
198 B
C
15 lines
198 B
C
#pragma once
|
|
|
|
typedef struct {
|
|
NvBuffer buffer;
|
|
} NvCmdList;
|
|
|
|
static inline iova_t nvcmdsGetGpuAddr() {
|
|
return 0; // TODO
|
|
}
|
|
|
|
static inline u64 nvcmdsGetListSize() {
|
|
return 0; // TODO
|
|
}
|
|
|