const_buffer_info.h 318 B

1234567891011121314151617
  1. // Copyright 2019 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "common/common_types.h"
  6. namespace Tegra::Engines {
  7. struct ConstBufferInfo {
  8. GPUVAddr address;
  9. u32 size;
  10. bool enabled;
  11. };
  12. } // namespace Tegra::Engines