Searched defs:ShaderInfo (Results 1 – 1 of 1) sorted by relevance
46 struct ShaderInfo struct48 ShaderType type; //!< Shader type.49 std::string source; //!< Shader source.50 std::string infoLog; //!< Compile info log.51 bool compileOk; //!< Did compilation succeed?52 deUint64 compileTimeUs; //!< Compile time in microseconds (us).54 ShaderInfo (void) : compileOk(false), compileTimeUs(0) {} in ShaderInfo() function