C++
struct AcGsRenderStatistics { float fRenderTime; size_t iMemory; size_t iMaterialCount; size_t iLightCount; size_t iTriangleCount; };
File
gs.h
Members
Members | Description |
---|---|
fRenderTime | The time it took to render the image, in seconds. |
iMemory | The amount of memory in KB used by the renderer. |
iMaterialCount | The number of materials used to render the image. |
iLightCount | The number of lights used to render the image. |
iTriangleCount | The number of triangles used to render the image. |
Description
A container for various statistics describing the data used to render an image.