Class: OpenCL::Char4

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

Overview

Maps the cl_char4 type of OpenCL

Instance Method Summary collapse

Constructor Details

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

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



568
569
570
571
572
573
574
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 568

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



576
577
578
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 576

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



592
593
594
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 592

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

#s1Object

Reads the s1 member



580
581
582
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 580

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



596
597
598
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 596

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

#s2Object

Reads the s2 member



584
585
586
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 584

def s2
 return self[:s2]
end

#s2=(value) ⇒ Object

Sets the s2 member to value



600
601
602
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 600

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

#s3Object

Reads the s3 member



588
589
590
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 588

def s3
 return self[:s3]
end

#s3=(value) ⇒ Object

Sets the s3 member to value



604
605
606
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 604

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

#to_sObject



607
608
609
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 607

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