[vulkan, rasterizer] Filling missing byte count handling when TFB is not available

This commit is contained in:
CamilleLaVey
2026-02-16 00:34:08 -04:00
committed by lizzie
parent 24d07ab28c
commit 1ae76d44c1
2 changed files with 13 additions and 8 deletions
+1 -3
View File
@@ -548,12 +548,10 @@ public:
return extensions.transform_feedback;
}
/// Returns true if the device supports VK_EXT_transform_feedback.
bool AreTransformFeedbackGeometryStreamsSupported() const {
return features.transform_feedback.geometryStreams;
}
/// Returns true if transform feedback preserves provoking vertex.
bool IsTransformFeedbackProvokingVertexPreserved() const {
return features.provoking_vertex.transformFeedbackPreservesProvokingVertex;
}
@@ -720,7 +718,7 @@ public:
return has_renderdoc || has_nsight_graphics || has_radeon_gpu_profiler;
}
/// @returns True if compute pipelines can cause crashing.
/// Returns true if compute pipelines can cause crashing.
bool HasBrokenCompute() const {
return has_broken_compute;
}