Class: OpenCL::UShort1

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

Overview

Maps the cl_ushort type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0) ⇒ UShort1

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



108
109
110
111
112
113
114
115
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 108

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

Instance Method Details

#inspectObject



125
126
127
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 125

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

#s0Object

Reads the s0 member



117
118
119
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 117

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



121
122
123
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 121

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

#to_sObject



129
130
131
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 129

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