Image.cpp 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <Tests/Image.h>
  9. namespace UnitTest
  10. {
  11. using namespace AZ;
  12. RHI::ResultCode ImageView::InitInternal(RHI::Device&, const RHI::DeviceResource&)
  13. {
  14. return RHI::ResultCode::Success;
  15. }
  16. RHI::ResultCode ImageView::InvalidateInternal()
  17. {
  18. return RHI::ResultCode::Success;
  19. }
  20. void ImageView::ShutdownInternal()
  21. {
  22. }
  23. RHI::ResultCode ImagePool::InitInternal(AZ::RHI::Device&, const RHI::ImagePoolDescriptor&)
  24. {
  25. return RHI::ResultCode::Success;
  26. }
  27. void ImagePool::ShutdownInternal()
  28. {
  29. }
  30. RHI::ResultCode ImagePool::InitImageInternal(const RHI::DeviceImageInitRequest&)
  31. {
  32. return RHI::ResultCode::Success;
  33. }
  34. void ImagePool::ShutdownResourceInternal(RHI::DeviceResource&)
  35. {
  36. }
  37. }