Class: OpenCL::UShort2

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

Overview

Maps the cl_ushort2 type of OpenCL

Instance Method Summary collapse

Constructor Details

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

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



328
329
330
331
332
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 328

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

Instance Method Details

#s0Object

Reads the s0 member



334
335
336
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 334

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



342
343
344
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 342

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

#s1Object

Reads the s1 member



338
339
340
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 338

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



346
347
348
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 346

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

#to_sObject



349
350
351
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 349

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