Class: OpenCL::UShort4
- Defined in:
- lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb
Overview
Maps the cl_ushort4 type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0, s1 = 0, s2 = 0, s3 = 0) ⇒ UShort4
constructor
Creates a new UShort4 with members set to 0 or to the user specified values.
- #inspect ⇒ Object
-
#s0 ⇒ Object
Reads the s0 member.
-
#s0=(value) ⇒ Object
Sets the s0 member to value.
-
#s1 ⇒ Object
Reads the s1 member.
-
#s1=(value) ⇒ Object
Sets the s1 member to value.
-
#s2 ⇒ Object
Reads the s2 member.
-
#s2=(value) ⇒ Object
Sets the s2 member to value.
-
#s3 ⇒ Object
Reads the s3 member.
-
#s3=(value) ⇒ Object
Sets the s3 member to value.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0, s1 = 0, s2 = 0, s3 = 0) ⇒ UShort4
Creates a new UShort4 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, UShort4 maps the memory pointed.
948 949 950 951 952 953 954 955 956 957 958 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 948 def initialize( s0 = 0, s1 = 0, s2 = 0, s3 = 0 ) if s0.is_a?(FFI::Pointer) then super(s0) else super() self[:s0] = s0 self[:s1] = s1 self[:s2] = s2 self[:s3] = s3 end end |
Instance Method Details
#inspect ⇒ Object
992 993 994 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 992 def inspect return "#<#{self.class.name}: #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]}>" end |
#s0 ⇒ Object
Reads the s0 member
960 961 962 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 960 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
976 977 978 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 976 def s0=(value) self[:s0] = value end |
#s1 ⇒ Object
Reads the s1 member
964 965 966 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 964 def s1 return self[:s1] end |
#s1=(value) ⇒ Object
Sets the s1 member to value
980 981 982 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 980 def s1=(value) self[:s1] = value end |
#s2 ⇒ Object
Reads the s2 member
968 969 970 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 968 def s2 return self[:s2] end |
#s2=(value) ⇒ Object
Sets the s2 member to value
984 985 986 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 984 def s2=(value) self[:s2] = value end |
#s3 ⇒ Object
Reads the s3 member
972 973 974 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 972 def s3 return self[:s3] end |
#s3=(value) ⇒ Object
Sets the s3 member to value
988 989 990 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 988 def s3=(value) self[:s3] = value end |
#to_s ⇒ Object
996 997 998 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 996 def to_s return "UShort4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }" end |