host_translate_info.h 517 B

123456789101112131415161718
  1. // Copyright 2021 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. namespace Shader {
  6. // Try to keep entries here to a minimum
  7. // They can accidentally change the cached information in a shader
  8. /// Misc information about the host
  9. struct HostTranslateInfo {
  10. bool support_float16{}; ///< True when the device supports 16-bit floats
  11. bool support_int64{}; ///< True when the device supports 64-bit integers
  12. };
  13. } // namespace Shader