Class: OpenCL::UChar1

Inherits:
Struct
  • Object
show all
Defined in:
lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb

Overview

Maps the cl_uchar type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0) ⇒ UChar1

Creates a new UChar1 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, UChar1 maps the memory pointed.



42
43
44
45
46
47
48
49
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 42

def initialize( s0 = 0 )
  if s0.is_a?(FFI::Pointer) then
    super(s0)
  else
    super()
    self[:s0] = s0
  end
end

Instance Method Details

#inspectObject



59
60
61
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 59

def inspect
  return "#<#{self.class.name}: #{self[:s0]}>"
end

#s0Object

Reads the s0 member



51
52
53
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 51

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



55
56
57
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 55

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

#to_sObject



63
64
65
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 63

def to_s
  return "UChar1{ #{self[:s0]} }"
end