diff options
| author | Graham Linden <none@none> | 2014-11-17 14:54:00 -0800 | 
|---|---|---|
| committer | Graham Linden <none@none> | 2014-11-17 14:54:00 -0800 | 
| commit | de2fe42a5277d1c9609372ac395767ca976d94e7 (patch) | |
| tree | 4487527cf9d847e6d11e5d7e829cb16cc2eb686c /indra/llrender | |
| parent | 9eeb8344a6dd8721ebc85463e966b05a9b034381 (diff) | |
Attempt wider disable of using profile API when timer query is not present
Diffstat (limited to 'indra/llrender')
| -rwxr-xr-x | indra/llrender/llvertexbuffer.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp index d06564df36..0fae600a90 100755 --- a/indra/llrender/llvertexbuffer.cpp +++ b/indra/llrender/llvertexbuffer.cpp @@ -843,9 +843,11 @@ void LLVertexBuffer::drawArrays(U32 mode, U32 first, U32 count) const  	{  		LL_RECORD_BLOCK_TIME(FTM_GL_DRAW_ARRAYS);  		stop_glerror(); -	LLGLSLShader::startProfile(); +		LLGLSLShader::startProfile(); +		stop_glerror();  		glDrawArrays(sGLMode[mode], first, count); -	LLGLSLShader::stopProfile(count, mode); +		stop_glerror(); +		LLGLSLShader::stopProfile(count, mode);  	}  	stop_glerror(); | 
