mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Fix Fedora build
This commit is contained in:
parent
c73ebdcf77
commit
1019f65824
4 changed files with 6 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
|||
#pragma once
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <cstdarg>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <vector>
|
||||
#include "termcolor.hpp"
|
||||
|
||||
using u8 = std::uint8_t;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
#include <vector>
|
||||
#include "helpers.hpp"
|
||||
|
||||
|
|
|
@ -323,7 +323,7 @@ void PICAShader::rsq(u32 instruction) {
|
|||
vec4f srcVec1 = getSourceSwizzled<1>(src1, operandDescriptor);
|
||||
|
||||
vec4f& destVector = getDest(dest);
|
||||
f24 res = f24::fromFloat32(1.0f / std::sqrtf(srcVec1[0].toFloat32()));
|
||||
f24 res = f24::fromFloat32(1.0f / std::sqrt(srcVec1[0].toFloat32()));
|
||||
|
||||
u32 componentMask = operandDescriptor & 0xf;
|
||||
for (int i = 0; i < 4; i++) {
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <cstring>
|
||||
#include <optional>
|
||||
#include "loader/ncsd.hpp"
|
||||
#include "memory.hpp"
|
||||
|
|
Loading…
Add table
Reference in a new issue