~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxGraphics/IOpenGLQuery.h

  • Committer: Jay Taoko
  • Date: 2011-10-21 22:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 509.
  • Revision ID: jay.taoko@canonical.com-20111021220635-1tdvncs47hdlfbz1
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  public:
35
35
    int GetData(
36
36
      int *pData,
37
 
      t_u32 Size,
38
 
      t_u32 GetDataFlags
 
37
      unsigned int Size,
 
38
      unsigned int GetDataFlags
39
39
    );
40
 
    t_u32 GetDataSize();
 
40
    unsigned int GetDataSize();
41
41
 
42
42
    void GetDevice(
43
43
      GpuDevice **ppDevice
46
46
    QUERY_TYPE GetType();
47
47
 
48
48
    void Issue(
49
 
      t_u32 IssueFlags
 
49
      unsigned int IssueFlags
50
50
    );
51
51
 
52
52
    // Convenient functions
66
66
    QUERY_TYPE _Type;
67
67
    bool _QueryStarted;
68
68
    friend class GpuDevice;
69
 
    static t_u32 _CurrentlyActiveQuery;
 
69
    static unsigned int _CurrentlyActiveQuery;
70
70
  };
71
71
 
72
72
}