選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
513 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. beg_namespace_ecs_core_parallelism
  4. {
  5. template<typename T_parameters>
  6. struct split_evenly
  7. {
  8. using parameters_type = T_parameters;
  9. template<typename T_context, typename T_instance, typename T_func>
  10. inline void operator()(T_context& context, T_instance& instance, T_func&& func) const
  11. {
  12. // auto split_count = parameters_type::get_split_count();
  13. // TODO
  14. }
  15. };
  16. }
  17. end_namespace_ecs_core_parallelism