123456789101112131415161718192021222324 |
- ///////////////////////////////////////////////////////////////////////////////
- // //
- // HLResource.cpp //
- // 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/HLSL/HLResource.h"
- #include "dxc/Support/Global.h"
- namespace hlsl {
- //------------------------------------------------------------------------------
- //
- // HLResource methods.
- //
- HLResource::HLResource()
- : DxilResource() {
- }
- } // namespace hlsl
|