Renamed IsDepthFormat/IsStencilFormat to IsDepthTextureFormat/IsStencilTextureFormat.
TRAC #20959
Signed-off-by: Daniel Koch
Author: Nicolas Capens
git-svn-id: https://angleproject.googlecode.com/svn/trunk@1156 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/libGLESv2/utilities.cpp b/src/libGLESv2/utilities.cpp
index 29892fa..94d507e 100644
--- a/src/libGLESv2/utilities.cpp
+++ b/src/libGLESv2/utilities.cpp
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
+// Copyright (c) 2002-2012 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -948,12 +948,12 @@
return false;
}
-bool IsDepthFormat(D3DFORMAT surfaceFormat)
+bool IsDepthTextureFormat(D3DFORMAT surfaceFormat)
{
return (surfaceFormat == D3DFMT_INTZ);
}
-bool IsStencilFormat(D3DFORMAT surfaceFormat)
+bool IsStencilTextureFormat(D3DFORMAT surfaceFormat)
{
return (surfaceFormat == D3DFMT_INTZ);
}