shader: Emulate 64-bit integers when not supported

Useful for mobile and Intel Xe devices.
This commit is contained in:
ReinUsesLisp 2021-06-23 01:39:21 -03:00 committed by ameerj
parent d8d5501459
commit fb166b5ff4
6 changed files with 16 additions and 2 deletions

View file

@ -164,6 +164,11 @@ public:
return is_formatless_image_load_supported;
}
/// Returns true if shader int64 is supported.
bool IsShaderInt64Supported() const {
return is_shader_int64_supported;
}
/// Returns true if shader int16 is supported.
bool IsShaderInt16Supported() const {
return is_shader_int16_supported;