Search Issue Tracker
Fixed in 2021.1.X
Fixed in 2019.4.X, 2020.1.X, 2020.2.X
Votes
0
Found in
Issue ID
1279213
Regression
No
Profiler - RawFrameDataIterator ThreadID will always return 0 for profiler frame data loaded from .data files
Repo:
1. Open the profiler and capture a bunch of frames
2. Save the capture
3. Load the capture
4. use RawFrameDataAPI to loop over threads
eg:
int frameIndex = 0;
int threadIndex = 0;
const int maxFrames = 300;
while(frameIndex < maxFrames)
{
while(true)
{
using (RawFrameDataView frameData = ProfilerDriver.GetRawFrameDataView(frameIndex, threadIndex))
{
if (!frameData.valid)
break;
Debug.Log(frameData.threadId);
}
threadIndex++;
}
}
Expected: threadId is 0 only once for main thread
Actual: threadId always returns 0
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Shadows are not visible in Player when using DX12 with Forward+ or Deferred+ rendering in URP
- Rendering Debugger Playmode debug UI scrolling is jittery when using click and drag to scroll
- Frame Debugger Target Selection Search Results window becomes too tiny to even see the default “Editor” selection when there are no search results
- Async method in Play Mode being aborted when calling `new System.Windows.Forms.Form`
- Animator window Eye button on click visual does not cover the whole area of the button when clicked
Add comment