Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close Submission failedFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close Your name Your email Suggestion*Declarationpublic static void BeginGPUCapture(); Description
Begins a GPU frame capture in PIX. If not running via PIX, or as a development build, then it has no effect.
using UnityEngine; using UnityEngine.Rendering;public class PixControl : MonoBehaviour { public int frameCaptureCount = 1;
int frameCount = 0; bool capturing = false;
void Awake() { if (PIX.IsAttached()) { PIX.BeginGPUCapture(); capturing = true; } }
void Update() { if (frameCount > frameCaptureCount && capturing) { PIX.EndGPUCapture(); capturing = false; }
frameCount++; } }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4