Search Issue Tracker
Fixed in 2019.1.X
Votes
0
Found in
2018.1.0b1
2018.2.6f1
Issue ID
1078885
Regression
Yes
MeshTopology.Quads generates a draw call that uses 3 point patches instead of 4 point
According to Unity Documentation (https://docs.unity3d.com/ScriptReference/MeshTopology.Quads.html), MeshTopology.Quads should generate a draw call that uses 4 point patches, however, it uses a 3 point patches instead.
Steps:
1. Open user's attached project "New Unity Project (3).zip"
2. Open Assets/Sccenes/SampleScene and enter Play mode
3. Record a frame using RenderDoc
4. In RenderDoc, in EventBrowser, select Camera.Render/DrawIndexed()
5. In API Inspector. select ID3D11DeviceContext::IASetPrimativeTopology/Topology
Expected: 4 point patch is used (D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST)
Actual: 3 point patch is used (D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST)
Reproduced with: 2018.1.9f2, 2018.2.8f1, 2018.3.0b2, 2019.1.0a1
Not reproduced with: 2017.4.11f1
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Lightmaps are baked incorrectly for GameObjects when their Position is <=-2048 or >=2048 on any of the coordinates
- Sahder errors in Player when "Strict shader variant matching" is enabled and the rendering path is set to "Deferred"
- NullReferenceExceptions are being thrown when saving a ScriptableObject with an array of a type with a CustomPropertyDrawer that uses TrackPropertyValue
- Applied velocity is inconsistent when using Rigidbody AddForce() with ForceMode.VelocityChange
- Crash on AudioUtil_CUSTOM_HasAudioCallback when exiting Play Mode while the Inspector is displaying a GameObject with an empty script attached
Add comment