|
|
|
@ -592,7 +592,7 @@ public: |
|
|
|
|
|
|
|
/// Returns true when a known debugging tool is attached. |
|
|
|
bool HasDebuggingToolAttached() const { |
|
|
|
return has_renderdoc || has_nsight_graphics; |
|
|
|
return has_renderdoc || has_nsight_graphics || has_radeon_gpu_profiler; |
|
|
|
} |
|
|
|
|
|
|
|
/// @returns True if compute pipelines can cause crashing. |
|
|
|
@ -816,6 +816,7 @@ private: |
|
|
|
bool has_broken_parallel_compiling{}; ///< Has broken parallel shader compiling. |
|
|
|
bool has_renderdoc{}; ///< Has RenderDoc attached |
|
|
|
bool has_nsight_graphics{}; ///< Has Nsight Graphics attached |
|
|
|
bool has_radeon_gpu_profiler{}; ///< Has Radeon GPU Profiler attached. |
|
|
|
bool supports_d24_depth{}; ///< Supports D24 depth buffers. |
|
|
|
bool cant_blit_msaa{}; ///< Does not support MSAA<->MSAA blitting. |
|
|
|
bool must_emulate_scaled_formats{}; ///< Requires scaled vertex format emulation |
|
|
|
|