Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glquerycounter(3g) [osx man page]

GLQUERYCOUNTER(3G)						    OpenGL 3.3							GLQUERYCOUNTER(3G)

NAME
glQueryCounter - record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. C SPECIFICATION
void glQueryCounter(GLuint id, GLenum target); PARAMETERS
id Specify the name of a query object into which to record the GL time. target Specify the counter to query. target must be GL_TIMESTAMP. DESCRIPTION
glQueryCounter causes the GL to record the current time into the query object named id. target must be GL_TIMESTAMP. The time is recorded after all previous commands on the GL client and server state and the framebuffer have been fully realized. When the time is recorded, the query result for that object is marked available. glQueryCounter timer queries can be used within a glBeginQuery() / glEndQuery() block where the target is GL_TIME_ELAPSED and it does not affect the result of that query object. NOTES
glQueryCounter is available only if the GL version is 3.3 or higher. ERRORS
GL_INVALID_OPERATION is generated if id is the name of a query object that is already in use within a glBeginQuery() / glEndQuery() block. GL_INVALID_VALUE is generated if id is not the name of a query object returned from a previous call to glGenQueries(). GL_INVALID_ENUM is generated if target is not GL_TIMESTAMP. SEE ALSO
glGenQueries(), glBeginQuery(), glEndQuery(), glDeleteQueries(), glGetQueryObject(), glGetQueryiv(), glGet() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. OpenGL 3.3 03/08/2011 GLQUERYCOUNTER(3G)

Check Out this Related Man Page

GLQUERYCOUNTER(3G)						    OpenGL 3.3							GLQUERYCOUNTER(3G)

NAME
glQueryCounter - record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. C SPECIFICATION
void glQueryCounter(GLuint id, GLenum target); PARAMETERS
id Specify the name of a query object into which to record the GL time. target Specify the counter to query. target must be GL_TIMESTAMP. DESCRIPTION
glQueryCounter causes the GL to record the current time into the query object named id. target must be GL_TIMESTAMP. The time is recorded after all previous commands on the GL client and server state and the framebuffer have been fully realized. When the time is recorded, the query result for that object is marked available. glQueryCounter timer queries can be used within a glBeginQuery() / glEndQuery() block where the target is GL_TIME_ELAPSED and it does not affect the result of that query object. NOTES
glQueryCounter is available only if the GL version is 3.3 or higher. ERRORS
GL_INVALID_OPERATION is generated if id is the name of a query object that is already in use within a glBeginQuery() / glEndQuery() block. GL_INVALID_VALUE is generated if id is not the name of a query object returned from a previous call to glGenQueries(). GL_INVALID_ENUM is generated if target is not GL_TIMESTAMP. SEE ALSO
glGenQueries(), glBeginQuery(), glEndQuery(), glDeleteQueries(), glGetQueryObject(), glGetQueryiv(), glGet() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. OpenGL 3.3 03/08/2011 GLQUERYCOUNTER(3G)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Date change related query

Good day folks, This is my first post on this board and I thank you in advance for helping me with this issue. Any idea how I can synchronize server time with another timeserver but have my server lag behind by 2 seconds? Meaning...I need a simple unix script that I can run as crone that... (2 Replies)
Discussion started by: franklo
2 Replies

2. Shell Programming and Scripting

Running an informix query on remote server

Hi, I have the following query: ------------------------------------------------------------------- set -xv ssh <remote server name> -l <login> export CLIENT_LOCALE=<some value> export INFORMIXDIR=<directory name> TERM=vt100 $INFORMIXDIR/bin/dbaccess sysmaster@dwem_test<<EOF>temp.txt... (2 Replies)
Discussion started by: sureshg_sampat
2 Replies

3. Shell Programming and Scripting

Source and Target count checking

Hi My source database is seibel and the target is oracle. I need to check the count for source query and target query. if it is equal then i need to send and success mail to an email id. If it is not equal need to send an failure mail to an email id. pl let me know about the script in ksh. ... (2 Replies)
Discussion started by: ksmbabu
2 Replies

4. IP Networking

netperf reslt TCP_RR TCP_STREAM is stange,help me

send byte=10 , I test two target, A and B different os. The TCP_STREAM' s result is higher than B but TCP_RR result is lower than B why? please help me (0 Replies)
Discussion started by: yanglei_fage
0 Replies

5. UNIX for Advanced & Expert Users

awk script queries

Hi, First query: I am trying to execute the below command to pull all the record whose length is not of the expected. But this is not giving the expected results. $2 is the record length passed in the script as second parameter.$filename is the filename on which the awk is executed.It is... (4 Replies)
Discussion started by: devina
4 Replies

6. UNIX for Dummies Questions & Answers

Dig total query time?

I'm using a .txt file filled with domain names for dig to use, the problem is that when i look at the results I get the query time for each individual query, I want to know how long it took in total for all queries to run, how can I achieve this? any help would be greatly appreciated, thank you.... (3 Replies)
Discussion started by: r7a7v7
3 Replies

7. Shell Programming and Scripting

From perl program query is not executed.

I have tried executing one particular query through perl.But I am unable to get the result. When I tried to execute the sysdate query its working when I executed my perl code. The below query doesn't work. QUERY 1:my $sql ="select name from tab where rownum <6"; Received ora error... (23 Replies)
Discussion started by: ramkumar15
23 Replies

8. Shell Programming and Scripting

Copy down based on condition

Hello: I need to copy down some data from the previous record in to the next record based on the below conditions If position 41- 59 of the current record is same as the previous record and the value of position 62 is not equal to 1 then copy the previous records value for positions... (1 Reply)
Discussion started by: techedipro
1 Replies