Class: OpenCL::Long4
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Long4
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_long4 type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0, s1 = 0, s2 = 0, s3 = 0) ⇒ Long4
constructor
Creates a new Long4 with members set to 0 or to the user specified values.
-
#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) ⇒ Long4
Creates a new Long4 with members set to 0 or to the user specified values
856 857 858 859 860 861 862 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 856 def initialize( s0 = 0, s1 = 0, s2 = 0, s3 = 0 ) super() self[:s0] = s0 self[:s1] = s1 self[:s2] = s2 self[:s3] = s3 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
864 865 866 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 864 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
880 881 882 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 880 def s0=(value) self[:s0] = value end |
#s1 ⇒ Object
Reads the s1 member
868 869 870 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 868 def s1 return self[:s1] end |
#s1=(value) ⇒ Object
Sets the s1 member to value
884 885 886 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 884 def s1=(value) self[:s1] = value end |
#s2 ⇒ Object
Reads the s2 member
872 873 874 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 872 def s2 return self[:s2] end |
#s2=(value) ⇒ Object
Sets the s2 member to value
888 889 890 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 888 def s2=(value) self[:s2] = value end |
#s3 ⇒ Object
Reads the s3 member
876 877 878 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 876 def s3 return self[:s3] end |
#s3=(value) ⇒ Object
Sets the s3 member to value
892 893 894 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 892 def s3=(value) self[:s3] = value end |
#to_s ⇒ Object
895 896 897 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 895 def to_s return "Long4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }" end |