Class: OpenCL::UInt2

Inherits:
Struct
  • Object
show all
Defined in:
lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb

Overview

Maps the cl_uint2 type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0, s1 = 0) ⇒ UInt2

Creates a new UInt2 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, UInt2 maps the memory pointed.



543
544
545
546
547
548
549
550
551
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 543

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

#inspectObject



569
570
571
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 569

def inspect
  return "#<#{self.class.name}: #{self[:s0]}, #{self[:s1]}>"
end

#s0Object

Reads the s0 member



553
554
555
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 553

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



561
562
563
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 561

def s0=(value)
 self[:s0] = value
end

#s1Object

Reads the s1 member



557
558
559
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 557

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



565
566
567
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 565

def s1=(value)
 self[:s1] = value
end

#to_sObject



573
574
575
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 573

def to_s
  return "UInt2{ #{self[:s0]}, #{self[:s1]} }"
end