Class: OpenCL::Short1

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

Overview

Maps the cl_short type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0) ⇒ Short1

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



69
70
71
72
73
74
75
76
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 69

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

Instance Method Details

#inspectObject



86
87
88
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 86

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

#s0Object

Reads the s0 member



78
79
80
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 78

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



82
83
84
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 82

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

#to_sObject



90
91
92
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 90

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