From 1b43046bb14a71c4596acd0aaef90ff0d2f7a1b3 Mon Sep 17 00:00:00 2001
From: simon <none@none>
Date: Wed, 30 Oct 2013 11:23:12 -0700
Subject: [PATCH] Fix transplated code

---
 indra/newview/llglsandbox.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/llglsandbox.cpp b/indra/newview/llglsandbox.cpp
index 83cabf7d551..c4c18272663 100755
--- a/indra/newview/llglsandbox.cpp
+++ b/indra/newview/llglsandbox.cpp
@@ -904,7 +904,7 @@ void gpu_benchmark()
 
 	LLRenderTarget dest[count];
 	U32 source[count];
-	LLImageGL::generateTextures(LLTexUnit::TT_TEXTURE, GL_RGBA, count, source);
+	LLImageGL::generateTextures(count, source);
 	std::vector<F32> results;
 
 	//build a random texture
@@ -983,7 +983,7 @@ void gpu_benchmark()
 
 	LLGLSLShader::finishProfile();
 	
-	LLImageGL::deleteTextures(LLTexUnit::TT_TEXTURE, GL_RGBA, 0, count, source);
+	LLImageGL::deleteTextures(count, source);
 
 
 	std::sort(results.begin(), results.end());
-- 
GitLab