From b3999348999ae86bfc8fd2d543eec2c51f6a2c8f Mon Sep 17 00:00:00 2001 From: "alokp@chromium.org" Date: Thu, 12 Aug 2010 19:46:23 +0000 Subject: [PATCH] Added comment about return values of ShInitialize() and ShFinalize(). Review URL: http://codereview.appspot.com/1980041 git-svn-id: https://angleproject.googlecode.com/svn/trunk@383 736b8ea6-26fd-11df-bfd4-992fa37f6226 --- include/GLSLANG/ShaderLang.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/GLSLANG/ShaderLang.h b/include/GLSLANG/ShaderLang.h index 19e6df034..cf7a6a957 100644 --- a/include/GLSLANG/ShaderLang.h +++ b/include/GLSLANG/ShaderLang.h @@ -19,10 +19,12 @@ extern "C" { // // Driver must call this first, once, before doing any other // compiler operations. +// If the function succeeds, the return value is nonzero, else zero. // int ShInitialize(); // // Driver should call this at shutdown. +// If the function succeeds, the return value is nonzero, else zero. // int ShFinalize(); //