Class: OpenCL::NameVersion

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

Overview

Maps the :cl_name_version type of OpenCL

Constant Summary collapse

MAX_NAME_SIZE =
64

Instance Method Summary collapse

Instance Method Details

#nameObject



202
203
204
# File 'lib/opencl_ruby_ffi/opencl_ruby_ffi_base.rb', line 202

def name
  self[:name].to_s
end

#versionObject



198
199
200
# File 'lib/opencl_ruby_ffi/opencl_ruby_ffi_base.rb', line 198

def version
  Version.from_int(self[:version])
end