mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
19 lines
No EOL
329 B
C++
19 lines
No EOL
329 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include "helpers.hpp"
|
|
|
|
namespace PICA {
|
|
struct DrawAcceleration {
|
|
u8* vertexBuffer;
|
|
u8* indexBuffer;
|
|
|
|
// Minimum and maximum index in the index buffer for a draw call
|
|
u16 minimumIndex, maximumIndex;
|
|
u32 vertexDataSize;
|
|
|
|
bool canBeAccelerated;
|
|
bool indexed;
|
|
};
|
|
} // namespace PICA
|