mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-07 03:21:38 +12:00
PicaVertex -> PICA::Vertex
This commit is contained in:
parent
b403e9a66e
commit
a3d8f777b4
6 changed files with 43 additions and 41 deletions
|
@ -28,7 +28,7 @@ class GPU {
|
|||
std::array<vec4f, 16> currentAttributes; // Vertex attributes before being passed to the shader
|
||||
|
||||
std::array<vec4f, 16> immediateModeAttributes; // Vertex attributes uploaded via immediate mode submission
|
||||
std::array<PicaVertex, 3> immediateModeVertices;
|
||||
std::array<PICA::Vertex, 3> immediateModeVertices;
|
||||
uint immediateModeVertIndex;
|
||||
uint immediateModeAttrIndex; // Index of the immediate mode attribute we're uploading
|
||||
|
||||
|
@ -68,7 +68,7 @@ class GPU {
|
|||
u32* cmdBuffCurr = nullptr;
|
||||
|
||||
Renderer renderer;
|
||||
PicaVertex getImmediateModeVertex();
|
||||
PICA::Vertex getImmediateModeVertex();
|
||||
|
||||
public:
|
||||
// 256 entries per LUT with each LUT as its own row forming a 2D image 256 * LUT_COUNT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue