Class: OpenCL::Char2
- Defined in:
- lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb
Overview
Maps the cl_char2 type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0, s1 = 0) ⇒ Char2
constructor
Creates a new Char2 with members set to 0 or to the user specified values.
- #inspect ⇒ Object
-
#s0 ⇒ Object
Reads the s0 member.
-
#s0=(value) ⇒ Object
Sets the s0 member to value.
-
#s1 ⇒ Object
Reads the s1 member.
-
#s1=(value) ⇒ Object
Sets the s1 member to value.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0, s1 = 0) ⇒ Char2
Creates a new Char2 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, Char2 maps the memory pointed.
348 349 350 351 352 353 354 355 356 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 348 def initialize( s0 = 0, s1 = 0 ) if s0.is_a?(FFI::Pointer) then super(s0) else super() self[:s0] = s0 self[:s1] = s1 end end |
Instance Method Details
#inspect ⇒ Object
374 375 376 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 374 def inspect return "#<#{self.class.name}: #{self[:s0]}, #{self[:s1]}>" end |
#s0 ⇒ Object
Reads the s0 member
358 359 360 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 358 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
366 367 368 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 366 def s0=(value) self[:s0] = value end |
#s1 ⇒ Object
Reads the s1 member
362 363 364 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 362 def s1 return self[:s1] end |
#s1=(value) ⇒ Object
Sets the s1 member to value
370 371 372 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 370 def s1=(value) self[:s1] = value end |
#to_s ⇒ Object
378 379 380 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 378 def to_s return "Char2{ #{self[:s0]}, #{self[:s1]} }" end |