Class: FMOD::System::RamUsage
- Inherits:
-
Struct
- Object
- Struct
- FMOD::System::RamUsage
- Defined in:
- lib/fmod/system.rb
Overview
Contains the amount of dedicated sound ram available if the platform supports it.
Instance Attribute Summary collapse
-
#current ⇒ Integer
The currently allocated sound RAM memory at time of call.
-
#max ⇒ Integer
The maximum allocated sound RAM memory since the System was created.
-
#total ⇒ Integer
The total amount of sound RAM available on this device.
Instance Attribute Details
#current ⇒ Integer
The currently allocated sound RAM memory at time of call.
35 36 37 |
# File 'lib/fmod/system.rb', line 35 def current @current end |
#max ⇒ Integer
The maximum allocated sound RAM memory since the System was created.
35 36 37 |
# File 'lib/fmod/system.rb', line 35 def max @max end |
#total ⇒ Integer
The total amount of sound RAM available on this device.
35 36 37 |
# File 'lib/fmod/system.rb', line 35 def total @total end |