Capitalized the first letter of all validation function names.
TRAC #23629
Signed-off-by: Nicolas Capens
Signed-off-by: Shannon Woods
Author: Geoff Lang
diff --git a/src/libGLESv2/validationES.cpp b/src/libGLESv2/validationES.cpp
index 346e91b..d77ce24 100644
--- a/src/libGLESv2/validationES.cpp
+++ b/src/libGLESv2/validationES.cpp
@@ -21,7 +21,7 @@
namespace gl
{
-bool validateRenderbufferStorageParameters(const gl::Context *context, GLenum target, GLsizei samples,
+bool ValidateRenderbufferStorageParameters(const gl::Context *context, GLenum target, GLsizei samples,
GLenum internalformat, GLsizei width, GLsizei height,
bool angleExtension)
{
@@ -97,7 +97,7 @@
return true;
}
-bool validateBlitFramebufferParameters(gl::Context *context, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
+bool ValidateBlitFramebufferParameters(gl::Context *context, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask,
GLenum filter, bool fromAngleExtension)
{
@@ -329,7 +329,7 @@
return true;
}
-bool validateGetVertexAttribParameters(GLenum pname, int clientVersion)
+bool ValidateGetVertexAttribParameters(GLenum pname, int clientVersion)
{
switch (pname)
{
@@ -356,7 +356,7 @@
}
}
-bool validateTexParamParameters(gl::Context *context, GLenum pname, GLint param)
+bool ValidateTexParamParameters(gl::Context *context, GLenum pname, GLint param)
{
switch (pname)
{
@@ -492,7 +492,7 @@
}
}
-bool validateSamplerObjectParameter(GLenum pname)
+bool ValidateSamplerObjectParameter(GLenum pname)
{
switch (pname)
{