Added antialiasing (MSAA) support to Canvases via a new optional parameter. Added Canvas:getFSAA.

This commit is contained in:
Alex Szpakowski
2014-01-27 01:31:41 -04:00
parent 10f1e23931
commit 7556fde5e6
21 changed files with 321 additions and 54 deletions
+2 -2
View File
@@ -48,12 +48,12 @@ public:
* Any setup the texture might need to do before drawing, e.g. binding
* the OpenGL texture for use.
**/
virtual void predraw() const {}
virtual void predraw() {}
/**
* Any cleanup the texture might need to do directly after drawing.
**/
virtual void postdraw() const {}
virtual void postdraw() {}
}; // Texture