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
+1 -1
View File
@@ -88,7 +88,7 @@ public:
* @param kx Shear along the x-axis.
* @param ky Shear along the y-axis.
**/
virtual void drawq(Quad *quad, float x, float y, float angle, float sx, float sy, float ox, float oy, float kx, float ky) const = 0;
virtual void drawq(Quad *quad, float x, float y, float angle, float sx, float sy, float ox, float oy, float kx, float ky) = 0;
virtual int getWidth() const;
virtual int getHeight() const;