17 lines
296 B
C++
17 lines
296 B
C++
|
#ifndef __VK_QUEUE_HPP
|
||
|
#define __VK_QUEUE_HPP
|
||
|
|
||
|
#include "./object.hpp"
|
||
|
#include "./fwd.hpp"
|
||
|
|
||
|
namespace vk {
|
||
|
struct queue : public owned<queue,device> {
|
||
|
void wait_idle (void);
|
||
|
|
||
|
template <typename T>
|
||
|
void submit (T data, const fence&); // VkQueueSubmit
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|