Class: OpenCL::Short4

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

Overview

Maps the cl_short4 type of OpenCL

Instance Method Summary collapse

Constructor Details

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

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



664
665
666
667
668
669
670
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 664

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



672
673
674
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 672

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



688
689
690
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 688

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

#s1Object

Reads the s1 member



676
677
678
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 676

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



692
693
694
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 692

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

#s2Object

Reads the s2 member



680
681
682
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 680

def s2
 return self[:s2]
end

#s2=(value) ⇒ Object

Sets the s2 member to value



696
697
698
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 696

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

#s3Object

Reads the s3 member



684
685
686
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 684

def s3
 return self[:s3]
end

#s3=(value) ⇒ Object

Sets the s3 member to value



700
701
702
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 700

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

#to_sObject



703
704
705
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 703

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