From a095aa4f4b954d42e42ae41013c7541c85a41b53 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Fri, 25 Mar 2005 12:05:30 +0000 Subject: [PATCH] fix comments; fix TBuiltInResource typedef --- src/mesa/shader/slang/Include/ResourceLimits.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mesa/shader/slang/Include/ResourceLimits.h b/src/mesa/shader/slang/Include/ResourceLimits.h index 4ba0b07..ef24244 100755 --- a/src/mesa/shader/slang/Include/ResourceLimits.h +++ b/src/mesa/shader/slang/Include/ResourceLimits.h @@ -1,4 +1,4 @@ -// +/* //Copyright (C) 2002-2005 3Dlabs Inc. Ltd. //All rights reserved. // @@ -30,7 +30,7 @@ //LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN //ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE //POSSIBILITY OF SUCH DAMAGE. -// +*/ #ifndef _RESOURCE_LIMITS_INCLUDED_ #define _RESOURCE_LIMITS_INCLUDED_ @@ -39,7 +39,7 @@ extern "C" { #endif -struct TBuiltInResource { +typedef struct TBuiltInResource_ { int maxLights; int maxClipPlanes; int maxTextureUnits; @@ -52,10 +52,10 @@ struct TBuiltInResource { int maxTextureImageUnits; int maxFragmentUniformComponents; int maxDrawBuffers; -}; +} TBuiltInResource; #ifdef __cplusplus } #endif -#endif // _RESOURCE_LIMITS_INCLUDED_ +#endif /* _RESOURCE_LIMITS_INCLUDED_ */ -- 2.7.4