Move src/backend to src/dawn_native

This commit is contained in:
Corentin Wallez
2018-07-24 13:53:51 +02:00
committed by Corentin Wallez
parent ff9626c751
commit d37523fbde
242 changed files with 865 additions and 865 deletions

View File

@@ -67,7 +67,7 @@ if (DAWN_ENABLE_D3D12)
endif()
add_executable(dawn_unittests ${UNITTEST_SOURCES})
target_link_libraries(dawn_unittests dawn_common gtest dawn_backend mock_dawn dawn_wire utils)
target_link_libraries(dawn_unittests dawn_common gtest lib_dawn_native mock_dawn dawn_wire utils)
DawnInternalTarget("tests" dawn_unittests)
add_executable(dawn_end2end_tests

View File

@@ -14,7 +14,7 @@
#include <gtest/gtest.h>
#include "backend/CommandAllocator.h"
#include "dawn_native/CommandAllocator.h"
using namespace backend;

View File

@@ -14,8 +14,8 @@
#include <gtest/gtest.h>
#include "backend/Error.h"
#include "backend/ErrorData.h"
#include "dawn_native/Error.h"
#include "dawn_native/ErrorData.h"
using namespace backend;

View File

@@ -14,7 +14,7 @@
#include <gtest/gtest.h>
#include "backend/PerStage.h"
#include "dawn_native/PerStage.h"
using namespace backend;

View File

@@ -14,7 +14,7 @@
#include <gtest/gtest.h>
#include "backend/RefCounted.h"
#include "dawn_native/RefCounted.h"
using namespace backend;

View File

@@ -14,8 +14,8 @@
#include <gtest/gtest.h>
#include "backend/RefCounted.h"
#include "backend/ToBackend.h"
#include "dawn_native/RefCounted.h"
#include "dawn_native/ToBackend.h"
#include <type_traits>

View File

@@ -14,8 +14,8 @@
#include <gtest/gtest.h>
#include "backend/d3d12/d3d12_platform.h"
#include "backend/d3d12/TextureCopySplitter.h"
#include "dawn_native/d3d12/d3d12_platform.h"
#include "dawn_native/d3d12/TextureCopySplitter.h"
#include "common/Assert.h"
#include "common/Constants.h"
#include "common/Math.h"