mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Decentralised some initialisation code. Minor fixes for Array, Component, iOS fonts.
This commit is contained in:
parent
9301d072e3
commit
e159587a9b
24 changed files with 493 additions and 388 deletions
|
|
@ -115,15 +115,15 @@ const String SystemStats::getComputerName()
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void SystemStats::initialiseStats()
|
||||
SystemStats::CPUFlags::CPUFlags()
|
||||
{
|
||||
// TODO
|
||||
cpuFlags.hasMMX = false;
|
||||
cpuFlags.hasSSE = false;
|
||||
cpuFlags.hasSSE2 = false;
|
||||
cpuFlags.has3DNow = false;
|
||||
hasMMX = false;
|
||||
hasSSE = false;
|
||||
hasSSE2 = false;
|
||||
has3DNow = false;
|
||||
|
||||
cpuFlags.numCpus = jmax (1, sysconf (_SC_NPROCESSORS_ONLN));
|
||||
numCpus = jmax (1, sysconf (_SC_NPROCESSORS_ONLN));
|
||||
}
|
||||
|
||||
void PlatformUtilities::fpuReset() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue