mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Minor cleanups in BackgroundAudio and ARM64 vtx dec. Update native.
This commit is contained in:
parent
2013034bd6
commit
3587b36f86
3 changed files with 2 additions and 8 deletions
|
@ -51,8 +51,6 @@ static const ARM64Reg fpScratchReg = S4;
|
|||
static const ARM64Reg fpScratchReg2 = S5;
|
||||
static const ARM64Reg fpScratchReg3 = S6;
|
||||
static const ARM64Reg fpScratchReg4 = S7;
|
||||
static const ARM64Reg fpUVscaleReg = D0;
|
||||
static const ARM64Reg fpUVoffsetReg = D1;
|
||||
|
||||
static const ARM64Reg neonScratchRegD = D2;
|
||||
static const ARM64Reg neonScratchRegQ = Q2;
|
||||
|
@ -278,11 +276,9 @@ bool VertexDecoderJitCache::CompileStep(const VertexDecoder &dec, int step) {
|
|||
|
||||
void VertexDecoderJitCache::Jit_ApplyWeights() {
|
||||
// We construct a matrix in Q4-Q7
|
||||
// We can use Q1 as temp.
|
||||
if (dec_->nweights >= 4) {
|
||||
MOVP2R(scratchReg64, bones + 16 * 4);
|
||||
}
|
||||
|
||||
for (int i = 0; i < dec_->nweights; i++) {
|
||||
switch (i) {
|
||||
case 0:
|
||||
|
|
|
@ -16,8 +16,7 @@
|
|||
class AT3PlusReader {
|
||||
public:
|
||||
AT3PlusReader(const std::string &data)
|
||||
: data_(data),
|
||||
file_((const uint8_t *)&data[0],
|
||||
: file_((const uint8_t *)&data[0],
|
||||
(int32_t)data.size()),
|
||||
raw_data_(0),
|
||||
raw_data_size_(0),
|
||||
|
@ -150,7 +149,6 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
const std::string &data_;
|
||||
ChunkFile file_;
|
||||
uint8_t *raw_data_;
|
||||
int raw_data_size_;
|
||||
|
|
2
native
2
native
|
@ -1 +1 @@
|
|||
Subproject commit 6eeecbc5af0ca37e42142f794fd11d4d98f21c3c
|
||||
Subproject commit e9414c238d10a1e0e0216e4cb1042611ef15f72b
|
Loading…
Add table
Reference in a new issue