~hikiko/compiz/compiz.experiments-3d-win

« back to all changes in this revision

Viewing changes to plugins/opengl/include/opengl/matrix.h

  • Committer: Eleni Maria Stea
  • Date: 2015-04-07 13:39:12 UTC
  • mfrom: (3940 compiz)
  • mto: This revision was merged to the branch mainline in revision 3941.
  • Revision ID: elenimaria.stea@canonical.com-20150407133912-uaaiv59mlvj6o7lx
added print function to GLMatrix class (debugging)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef _GLMATRIX_H
27
27
#define _GLMATRIX_H
28
28
 
 
29
#include <stdio.h>
29
30
#include <opengl/vector.h>
30
31
 
31
32
class CompOutput;
56
57
        void translate (const float x, const float y, const float z);
57
58
        void translate (const GLVector& vector);
58
59
 
 
60
    const void print() const;
 
61
 
59
62
    private:
60
63
        friend GLMatrix operator* (const GLMatrix& lhs,
61
64
                                   const GLMatrix& rhs);