cgv
Loading...
Searching...
No Matches
priority.h
1#pragma once
2
3#include "lib_begin.h"
4
5namespace cgv {
6 namespace os {
7
9enum ExecutionPriority {
10 EP_IDLE,
11 EP_NORMAL,
12 EP_HIGH
13};
14
16ExecutionPriority CGV_API get_execution_priority();
17
19bool CGV_API set_execution_priority(ExecutionPriority ep);
20
21 }
22}
23
24#include <cgv/config/lib_end.h>
the cgv namespace
Definition print.h:11