Complete move to DxilSignatureAllocator.inl

This commit is contained in:
Tex Riddell 2017-05-16 21:33:30 -07:00
Родитель 2bedc332fb
Коммит 8419a9abce
3 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -1,20 +1,18 @@
///////////////////////////////////////////////////////////////////////////////
// //
// DxilSignatureAllocator.cpp //
// DxilSignatureAllocator.inl //
// Copyright (C) Microsoft Corporation. All rights reserved. //
// This file is distributed under the University of Illinois Open Source //
// License. See LICENSE.TXT for details. //
// //
///////////////////////////////////////////////////////////////////////////////
#include "dxc/Support/Global.h"
#include "dxc/HLSL/DxilSignatureAllocator.h"
#include <memory>
#include <algorithm>
//#include "dxc/Support/Global.h" // for DXASSERT
//#include "dxc/HLSL/DxilSignatureAllocator.h"
using std::vector;
using std::unique_ptr;
using std::sort;
using std::vector; // #include <vector>
using std::unique_ptr; // #include <memory>
using std::sort; // #include <algorithm>
namespace hlsl {

Просмотреть файл

@ -23,7 +23,6 @@ add_llvm_library(LLVMHLSL
DxilSemantic.cpp
DxilShaderModel.cpp
DxilSignature.cpp
DxilSignatureAllocator.cpp
DxilSignatureElement.cpp
DxilSigPoint.cpp
DxilTypeSystem.cpp

Просмотреть файл

@ -200,3 +200,6 @@ unsigned DxilSignature::PackElements(DXIL::PackingStrategy packing) {
}
} // namespace hlsl
#include <algorithm>
#include "dxc/HLSL/DxilSignatureAllocator.inl"