This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Error #1: | |
| (unknown): Unable to get value of the property 'toUpperCase': object is null or undefined | |
| Location: https://cdn.webglstats.com/stat.js line 8 | |
| Browser: IE 9.0 | |
| OS: Windows Vista | |
| Error #2: | |
| (unknown): Error loading script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class OStream::PrivateData | |
| { | |
| private: | |
| char filestreamBuffer[STREAM_BUF_SIZE]; | |
| public: | |
| PrivateData(const std::string & iFileName) : | |
| stream(NULL), fileName(iFileName), startPos(0) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| uniform vec3 ambient; | |
| uniform vec3 diffuse; | |
| uniform vec3 specular; | |
| uniform float shininess; | |
| uniform float opacity; | |
| uniform bool enableDiffuse; | |
| uniform bool enableSpecular; | |
| uniform bool enableAO; | |
| uniform bool enableReflection; | |
| uniform sampler2D tDiffuse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vec4 inputGamma( const in vec4 input_rgba ) { | |
| #ifdef GAMMA_INPUT | |
| vec4 output_rgba = input_rgba; | |
| output_rgba.xyz * output_rgba.xyz; | |
| return output_rgba; | |
| #else | |
| return input_rgba; | |
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| uniform vec3 ambient; | |
| uniform vec3 diffuse; | |
| uniform vec3 specular; | |
| uniform float shininess; | |
| uniform float opacity; | |
| uniform bool enableDiffuse; | |
| uniform bool enableSpecular; | |
| uniform bool enableAO; | |
| uniform bool enableReflection; | |
| uniform sampler2D tDiffuse; |
NewerOlder