Make autogenerated validation produce device or builder errors

This commit is contained in:
Corentin Wallez
2017-05-10 15:30:05 +02:00
committed by Corentin Wallez
parent f79df0c62d
commit 36cf2dd54b
13 changed files with 69 additions and 29 deletions

View File

@@ -167,7 +167,8 @@ namespace opengl {
// Queue
Queue::Queue(Device* device, QueueBuilder* builder) : device(device) {
Queue::Queue(Device* device, QueueBuilder* builder)
: QueueBase(builder), device(device) {
}
void Queue::Submit(uint32_t numCommands, CommandBuffer* const * commands) {