mirror of
https://github.com/open-goal/jak-project
synced 2026-05-26 07:39:12 -04:00
b4113dda67
This centralizes the code that both `extractor` and the decompiler executes. In the past this code was partially-duplicated, meaning that the `extractor` could only do _some_ operations and not others (ie. could not extract the audio files). I also simplified the process to enable audio streaming in the configuration. This is to support a new feature in the launcher that allows you to enable these options for the decompiler: 
19 lines
265 B
C++
19 lines
265 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
size_t get_peak_rss();
|
|
void setup_cpu_info();
|
|
|
|
struct CpuInfo {
|
|
bool initialized = false;
|
|
bool has_avx = false;
|
|
bool has_avx2 = false;
|
|
|
|
std::string brand;
|
|
std::string model;
|
|
};
|
|
|
|
CpuInfo& get_cpu_info();
|