diff --git a/README.md b/README.md index 280fea2..1c22ace 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,12 @@ MIT license. See [LICENSE.md](LICENSE.md). ## Samples -| | Chrome 49 Windows | Firefox 42 Windows| -|--------------|:-----------------:|:-----------------:| -|[draw_instanced](http://webglsamples.org/WebGL2Samples/#draw_instanced)|:white_check_mark: | :x: crash | -|[glsl_discard](http://webglsamples.org/WebGL2Samples/#glsl_discard) |:white_check_mark: | :white_check_mark:| -|[query_occlusion](http://webglsamples.org/WebGL2Samples/#query_occlusion)|:white_check_mark:| :white_check_mark:| +| | Chrome 49 Windows | 49 OSX 10.10| Firefox 42 Windows| Firefox 42 OSX 10.10| +|--------------|:-----------------:|:--------------------------------------:|:-----------------:|:-----------------------:| +|[draw_instanced](http://webglsamples.org/WebGL2Samples/#draw_instanced)|:white_check_mark: |:white_check_mark:| :x: crash|:white_check_mark:| +|[glsl_discard](http://webglsamples.org/WebGL2Samples/#glsl_discard)|:white_check_mark: |:white_check_mark:| :white_check_mark:|:white_check_mark:| +|[query_occlusion](http://webglsamples.org/WebGL2Samples/#query_occlusion)|:white_check_mark:|:white_check_mark:| :white_check_mark:|:white_check_mark:| +|[sampler_filter](http://webglsamples.org/WebGL2Samples/#sampler_filter)|:x:not tested|:white_check_mark:| :x: not tested|:white_check_mark:| ## Running the Samples Locally diff --git a/index.html b/index.html index 3128918..5ed6bec 100644 --- a/index.html +++ b/index.html @@ -204,6 +204,9 @@

WebGL 2.0 Samples

"Instancing": [ "draw_instanced" ], + "Sampler": [ + "sampler_filter" + ], "GLSL": [ "glsl_discard" ], diff --git a/samples/sampler_filter.html b/samples/sampler_filter.html new file mode 100644 index 0000000..9b12186 --- /dev/null +++ b/samples/sampler_filter.html @@ -0,0 +1,264 @@ + + + + + + WebGL 2 Samples - sampler_filter + + + + + + + +
WebGL 2 Samples - sampler_filter
+ + + + + + + + + + diff --git a/samples/utility.js b/samples/utility.js index 8be89bb..27d6dae 100644 --- a/samples/utility.js +++ b/samples/utility.js @@ -36,4 +36,4 @@ onload(img); }; }; -})(); \ No newline at end of file +})();