cruft/util: use new debug headers

This commit is contained in:
Danny Robson 2019-05-17 13:33:30 +10:00
parent 705196eb03
commit bf1d8e20ad
6 changed files with 7 additions and 8 deletions

View File

@ -13,7 +13,7 @@
#include "./queue.hpp"
#include <cruft/util/cast.hpp>
#include <cruft/util/debug.hpp>
#include <cruft/util/debug/assert.hpp>
using cruft::vk::device;

View File

@ -9,7 +9,7 @@
#include "./except.hpp"
#include <cruft/util/debug.hpp>
#include <cruft/util/debug/panic.hpp>
#include <cruft/util/preprocessor.hpp>
using cruft::vk::error;

View File

@ -12,7 +12,7 @@
#include "./vk.hpp"
#include <cruft/util/debug.hpp>
#include <cruft/util/debug/assert.hpp>
#include <cruft/util/types/traits.hpp>
#include <exception>

View File

@ -12,7 +12,7 @@
#include "./device.hpp"
#include <cruft/util/cast.hpp>
#include <cruft/util/debug.hpp>
#include <cruft/util/debug/assert.hpp>
using cruft::vk::fence;

View File

@ -13,12 +13,11 @@
#include "./physical_device.hpp"
#include <cruft/util/debug.hpp>
using cruft::vk::object;
using cruft::vk::enumerated;
///////////////////////////////////////////////////////////////////////////////
#define OBJECT(T) template struct cruft::vk::object<cruft::vk::T>;
VK_TYPE_MAP (OBJECT)

View File

@ -848,9 +848,9 @@ def write_dispatch(dst: TextIO, q: List[Type], reg: Registry):
#include <cruft/vk/vk.hpp>
#include <cruft/vk/load/vtable.hpp>
#include <cruft/vk/load/dispatch.hpp>
#include <cruft/util/debug.hpp>
#include <cruft/util/debug/panic.hpp>
#include <cstring>
#include <iostream>