mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[PICA] Short attributes
This commit is contained in:
parent
be4fae5104
commit
4868eebcd2
1 changed files with 10 additions and 1 deletions
|
@ -96,6 +96,15 @@ void GPU::drawArrays() {
|
|||
uint component; // Current component
|
||||
|
||||
switch (attribType) {
|
||||
case 2: { // Short
|
||||
s16* ptr = getPointerPhys<s16>(attrAddress);
|
||||
for (component = 0; component < componentCount; component++) {
|
||||
float val = static_cast<float>(*ptr++);
|
||||
attribute[component] = f24::fromFloat32(val);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 3: { // Float
|
||||
float* ptr = getPointerPhys<float>(attrAddress);
|
||||
for (component = 0; component < componentCount; component++) {
|
||||
|
@ -105,7 +114,7 @@ void GPU::drawArrays() {
|
|||
break;
|
||||
}
|
||||
|
||||
default: Helpers::panic("[PICA] Unimplemented component type %d", attribType);
|
||||
default: Helpers::panic("[PICA] Unimplemented attribute type %d", attribType);
|
||||
}
|
||||
|
||||
// Fill the remaining attribute lanes with default parameters (1.0 for alpha/w, 0.0) for everything else
|
||||
|
|
Loading…
Add table
Reference in a new issue