Class: Raylib::RlDrawCall
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::RlDrawCall
- Defined in:
- lib/rlgl.rb
Overview
of those state-change happens (this is done in core module)
Instance Method Summary collapse
- #mode ⇒ Object
- #mode=(v) ⇒ Object
- #textureId ⇒ Object
- #textureId=(v) ⇒ Object
- #vertexAlignment ⇒ Object
- #vertexAlignment=(v) ⇒ Object
- #vertexCount ⇒ Object
- #vertexCount=(v) ⇒ Object
Instance Method Details
#mode ⇒ Object
289 |
# File 'lib/rlgl.rb', line 289 def mode = self[:mode] |
#mode=(v) ⇒ Object
290 |
# File 'lib/rlgl.rb', line 290 def mode=(v) self[:mode] = v end |
#textureId ⇒ Object
295 |
# File 'lib/rlgl.rb', line 295 def textureId = self[:textureId] |
#textureId=(v) ⇒ Object
296 |
# File 'lib/rlgl.rb', line 296 def textureId=(v) self[:textureId] = v end |
#vertexAlignment ⇒ Object
293 |
# File 'lib/rlgl.rb', line 293 def vertexAlignment = self[:vertexAlignment] |
#vertexAlignment=(v) ⇒ Object
294 |
# File 'lib/rlgl.rb', line 294 def vertexAlignment=(v) self[:vertexAlignment] = v end |
#vertexCount ⇒ Object
291 |
# File 'lib/rlgl.rb', line 291 def vertexCount = self[:vertexCount] |
#vertexCount=(v) ⇒ Object
292 |
# File 'lib/rlgl.rb', line 292 def vertexCount=(v) self[:vertexCount] = v end |