1 | #include <iostream>
|
---|
2 | #include "OcclusionQuery.h"
|
---|
3 | #include "glInterface.h"
|
---|
4 |
|
---|
5 | using namespace std;
|
---|
6 |
|
---|
7 |
|
---|
8 | namespace CHCDemoEngine
|
---|
9 | {
|
---|
10 |
|
---|
11 | OcclusionQuery::OcclusionQuery()
|
---|
12 | {
|
---|
13 | glGenQueriesARB(1, &mQueryId);
|
---|
14 |
|
---|
15 | // reverse for multiqueries with 20 nodes
|
---|
16 | mNodes.reserve(32);
|
---|
17 | }
|
---|
18 |
|
---|
19 |
|
---|
20 | OcclusionQuery::~OcclusionQuery()
|
---|
21 | {
|
---|
22 | glDeleteQueriesARB(1, &mQueryId);
|
---|
23 | }
|
---|
24 |
|
---|
25 |
|
---|
26 | void OcclusionQuery::BeginQuery() const
|
---|
27 | {
|
---|
28 | glBeginQueryARB(GL_SAMPLES_PASSED_ARB, mQueryId);
|
---|
29 | }
|
---|
30 |
|
---|
31 |
|
---|
32 | void OcclusionQuery::EndQuery() const
|
---|
33 | {
|
---|
34 | glEndQueryARB(GL_SAMPLES_PASSED_ARB);
|
---|
35 | }
|
---|
36 |
|
---|
37 |
|
---|
38 | unsigned int OcclusionQuery::GetQueryId() const
|
---|
39 | {
|
---|
40 | return mQueryId;
|
---|
41 | }
|
---|
42 |
|
---|
43 |
|
---|
44 | bool OcclusionQuery::ResultAvailable() const
|
---|
45 | {
|
---|
46 | GLuint available = GL_FALSE;
|
---|
47 |
|
---|
48 | glGetQueryObjectuivARB(mQueryId, GL_QUERY_RESULT_AVAILABLE_ARB, &available);
|
---|
49 |
|
---|
50 | return available == GL_TRUE;
|
---|
51 | }
|
---|
52 |
|
---|
53 |
|
---|
54 | unsigned int OcclusionQuery::GetQueryResult() const
|
---|
55 | {
|
---|
56 | GLuint sampleCount = 1;
|
---|
57 |
|
---|
58 | glGetQueryObjectuivARB(mQueryId, GL_QUERY_RESULT_ARB, &sampleCount);
|
---|
59 |
|
---|
60 | return sampleCount;
|
---|
61 | }
|
---|
62 |
|
---|
63 |
|
---|
64 |
|
---|
65 | QueryHandler::QueryHandler(): mCurrentQueryIdx(0)
|
---|
66 | {
|
---|
67 | Allocate(500);
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | OcclusionQuery *QueryHandler::RequestQuery()
|
---|
72 | {
|
---|
73 | OcclusionQuery *query;
|
---|
74 |
|
---|
75 | if (mCurrentQueryIdx == mOcclusionQueries.size())
|
---|
76 | {
|
---|
77 | query = new OcclusionQuery();
|
---|
78 | mOcclusionQueries.push_back(query);
|
---|
79 | }
|
---|
80 | else
|
---|
81 | {
|
---|
82 | query = mOcclusionQueries[mCurrentQueryIdx];
|
---|
83 | query->Reset();
|
---|
84 | }
|
---|
85 |
|
---|
86 | ++ mCurrentQueryIdx;
|
---|
87 |
|
---|
88 | return query;
|
---|
89 | }
|
---|
90 |
|
---|
91 |
|
---|
92 | void QueryHandler::ResetQueries()
|
---|
93 | {
|
---|
94 | mCurrentQueryIdx = 0;
|
---|
95 | }
|
---|
96 |
|
---|
97 |
|
---|
98 | void QueryHandler::DestroyQueries()
|
---|
99 | {
|
---|
100 | CLEAR_CONTAINER(mOcclusionQueries);
|
---|
101 |
|
---|
102 | mCurrentQueryIdx = 0;
|
---|
103 | mOcclusionQueries.clear();
|
---|
104 | }
|
---|
105 |
|
---|
106 |
|
---|
107 | void QueryHandler::Allocate(int n)
|
---|
108 | {
|
---|
109 | unsigned int *ids = new unsigned int[n];
|
---|
110 | glGenQueriesARB(n, ids);
|
---|
111 |
|
---|
112 | for (int i = 0; i < n; ++ i)
|
---|
113 | {
|
---|
114 | OcclusionQuery *q = new OcclusionQuery(ids[i]);
|
---|
115 | mOcclusionQueries.push_back(q);
|
---|
116 | }
|
---|
117 |
|
---|
118 | mCurrentQueryIdx = n;
|
---|
119 | delete [] ids;
|
---|
120 | }
|
---|
121 |
|
---|
122 |
|
---|
123 | } // namespace
|
---|