Panda3DS/include/PICA/draw_acceleration.hpp
2024-08-21 00:51:18 +03:00

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