Class: OpenCL::UShort4

Inherits:
FFI::Struct show all
Defined in:
lib/opencl_ruby_ffi/Arithmetic_gen.rb

Overview

Maps the cl_ushort4 type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0, s1 = 0, s2 = 0, s3 = 0) ⇒ UShort4

Creates a new UShort4 with members set to 0 or to the user specified values



712
713
714
715
716
717
718
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 712

def initialize( s0 = 0, s1 = 0, s2 = 0, s3 = 0 )
  super()
  self[:s0] = s0
  self[:s1] = s1
  self[:s2] = s2
  self[:s3] = s3
end

Instance Method Details

#s0Object

Reads the s0 member



720
721
722
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 720

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



736
737
738
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 736

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

#s1Object

Reads the s1 member



724
725
726
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 724

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



740
741
742
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 740

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

#s2Object

Reads the s2 member



728
729
730
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 728

def s2
 return self[:s2]
end

#s2=(value) ⇒ Object

Sets the s2 member to value



744
745
746
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 744

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

#s3Object

Reads the s3 member



732
733
734
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 732

def s3
 return self[:s3]
end

#s3=(value) ⇒ Object

Sets the s3 member to value



748
749
750
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 748

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

#to_sObject



751
752
753
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 751

def to_s
  return "UShort4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }"
end