Class: OpenCL::UChar2

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

Overview

Maps the cl_uchar2 type of OpenCL

Instance Method Summary collapse

Constructor Details

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

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



268
269
270
271
272
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 268

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

Instance Method Details

#s0Object

Reads the s0 member



274
275
276
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 274

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



282
283
284
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 282

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

#s1Object

Reads the s1 member



278
279
280
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 278

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



286
287
288
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 286

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

#to_sObject



289
290
291
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 289

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