Index: remoting/client/gl_canvas.h |
diff --git a/remoting/client/gl_canvas.h b/remoting/client/gl_canvas.h |
index 8443f89a6c0568bb9f077a1033eef12432c33658..f6155c53852ef50236deb9071170eeaba303dee2 100644 |
--- a/remoting/client/gl_canvas.h |
+++ b/remoting/client/gl_canvas.h |
@@ -30,7 +30,8 @@ class GlCanvas { |
// Sets the normalized transformation matrix. This matrix defines how the |
// canvas should be shown on the view. |
- // 3 by 3 transformation matrix, [ m0, m1, m2, m3, m4, m5, m6, m7, m8 ]. |
+ // 3 by 3 transformation matrix **in column-major order**, i. e. |
+ // [ m0, m3, m6, m1, m4, m7, m2, m5, m8 ]. |
// The matrix will be multiplied with the positions (with projective space, |
// (x, y, 1)) to draw the textures with the right zoom and pan configuration. |
// |