Class: FMOD::System::CpuUsage
- Inherits:
-
Struct
- Object
- Struct
- FMOD::System::CpuUsage
- Defined in:
- lib/fmod/system.rb
Overview
Contains values for describing the current CPU time used by FMOD.
Instance Attribute Summary collapse
-
#dsp ⇒ Float
The current DSP mixing engine CPU usage.
-
#geometry ⇒ Float
The current geometry engine CPU usage.
-
#stream ⇒ Float
The current streaming engine CPU usage.
-
#total ⇒ Float
The current total CPU usage.
-
#update ⇒ Float
The current System::update CPU usage.
Instance Attribute Details
#dsp ⇒ Float
The current DSP mixing engine CPU usage. Result will be from 0.0 to 100.0.
24 25 26 |
# File 'lib/fmod/system.rb', line 24 def dsp @dsp end |
#geometry ⇒ Float
The current geometry engine CPU usage. Result will be from 0.0 to 100.0.
24 25 26 |
# File 'lib/fmod/system.rb', line 24 def geometry @geometry end |
#stream ⇒ Float
The current streaming engine CPU usage. Result will be from 0.0 to 100.0.
24 25 26 |
# File 'lib/fmod/system.rb', line 24 def stream @stream end |
#total ⇒ Float
The current total CPU usage. Result will be from 0 to 100.0.
24 25 26 |
# File 'lib/fmod/system.rb', line 24 def total @total end |
#update ⇒ Float
The current System::update CPU usage. Result will be from 0.0 to 100.0.
24 25 26 |
# File 'lib/fmod/system.rb', line 24 def update @update end |