SampleCountFlagBits::e16 - GetGpuClock64 (#360)

* SampleCountFlagBits::e16

* GpuClock64

* GpuClock64

* Update pm4_cmds.h

* Update pm4_cmds.h
This commit is contained in:
DanielSvoboda 2024-08-04 10:49:43 -03:00 committed by GitHub
parent 21462523de
commit 7308864537
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -681,6 +681,8 @@ vk::SampleCountFlagBits NumSamples(u32 num_samples) {
return vk::SampleCountFlagBits::e4;
case 8:
return vk::SampleCountFlagBits::e8;
case 16:
return vk::SampleCountFlagBits::e16;
default:
UNREACHABLE();
}