git-svn-id: http://skia.googlecode.com/svn/trunk@2014 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-08-01 17:35:01 +00:00
Родитель 654d72f94c
Коммит 030302ce69
1 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -31,21 +31,21 @@ struct GrGpuStats {
uint32_t fProgChngCnt;//<! Number of program changes (N/A for fixed)
/*
* Number of times the texture is set in 3D API
*/
/**
* Number of times the texture is set in 3D API
*/
uint32_t fTextureChngCnt;
/*
* Number of times the render target is set in 3D API
*/
/**
* Number of times the render target is set in 3D API
*/
uint32_t fRenderTargetChngCnt;
/*
* Number of textures created (includes textures that are rendertargets).
*/
/**
* Number of textures created (includes textures that are rendertargets).
*/
uint32_t fTextureCreateCnt;
/*
* Number of rendertargets created.
*/
/**
* Number of rendertargets created.
*/
uint32_t fRenderTargetCreateCnt;
};