1
0
Fork 0
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:
Julian Storer 2011-04-21 12:20:08 +01:00
parent 9301d072e3
commit e159587a9b
24 changed files with 493 additions and 388 deletions

View file

@ -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() {}