From: Michal Krol Date: Fri, 25 Mar 2005 12:05:30 +0000 (+0000) Subject: fix comments; fix TBuiltInResource typedef X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a095aa4f4b954d42e42ae41013c7541c85a41b53;p=mesa.git fix comments; fix TBuiltInResource typedef --- diff --git a/src/mesa/shader/slang/Include/ResourceLimits.h b/src/mesa/shader/slang/Include/ResourceLimits.h index 4ba0b07d07e..ef24244c288 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_ */