OCLSLAM  0.1.0
 Hosted by GitHub
common.hpp
Go to the documentation of this file.
1 
29 #ifndef OCLSLAM_COMMON_HPP
30 #define OCLSLAM_COMMON_HPP
31 
32 
33 namespace cl_algo
34 {
35 namespace oclslam
36 {
37 
43  enum class Staging : uint8_t
44  {
45  NONE,
46  I,
47  O,
48  IO
49  };
50 
51 }
52 }
53 
54 #endif // OCLSLAM_COMMON_HPP
Offers classes which set up kernel execution parameters and provide interfaces for the handling of me...
Definition: algorithms.hpp:45
Offers functions that are serial CPU implementations of the relevant algorithms in the OCLSLAM pipeli...
Definition: helper_funcs.hpp:47
Staging
Enumerates staging buffer configurations.
Definition: common.hpp:43