libcruft-vk/queue.hpp

17 lines
296 B
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#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