Enum Type
Defined in File metrics/types.h
Enum Documentation
-
enum class gpa::metrics::Type
The type of a metric.
Values:
-
enumerator Unknown
-
enumerator Percent
A percentage value [0..1]. Example: GPU Busy – what of percentage of the cycles since the last sample was the gpu busy.
-
enumerator Time
A duration of time used. Example: GPU Time - ns it took to complete some operation.
-
enumerator Value
A raw value. Example: GMM_TEXTURE_MEM_USED_VALUE - current number of bytes used.
-
enumerator Count
A value representing how many of these things happened during the last sample. Example: CREATEVERTEXSHADER – number of vertex created since the sample.
-
enumerator Number
Simple number showing the state of something. Example: SWVP_State should either be a 0 or 1.
-
enumerator Unknown