Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glgenqueries(3g) [osx man page]

GLGENQUERIES(3G)						    OpenGL 3.3							  GLGENQUERIES(3G)

NAME
glGenQueries - generate query object names C SPECIFICATION
void glGenQueries(GLsizei n, GLuint * ids); PARAMETERS
n Specifies the number of query object names to be generated. ids Specifies an array in which the generated query object names are stored. DESCRIPTION
glGenQueries returns n query object names in ids. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to glGenQueries. Query object names returned by a call to glGenQueries are not returned by subsequent calls, unless they are first deleted with glDeleteQueries(). No query objects are associated with the returned query object names until they are first used by calling glBeginQuery(). ERRORS
GL_INVALID_VALUE is generated if n is negative. GL_INVALID_OPERATION is generated if glGenQueries is executed between the execution of glBeginQuery() and the corresponding execution of glEndQuery(). ASSOCIATED GETS
glIsQuery() SEE ALSO
glBeginQuery(), glDeleteQueries(), glEndQuery() COPYRIGHT
Copyright (C) 2005 Addison-Wesley. 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 GLGENQUERIES(3G)

Check Out this Related Man Page

GLQUERYCOUNTER(3G)						   OpenGL Manual						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/. AUTHORS
opengl.org opengl.org 06/10/2014 GLQUERYCOUNTER(3G)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to Pass a list of file names to ls

Hi I have a list of file names generated from a find command. The list does not show complete file information. I would like to do this: generate the list of file names pass each file name generated to ls -l command what is the best way to do this without a script? I have tried... (2 Replies)
Discussion started by: GMMike
2 Replies

2. UNIX for Advanced & Expert Users

Another SUDOER Question...

I have my sudoers file setup to provide execution of specific directories (/a/s, /a/x, /a/d, /a/e, etc.....) I tried to list just /a/ meaning anything under /a can be executed by specific ids. However, this didn't work. Is there a way to provide rights to an entire directory structure within a... (0 Replies)
Discussion started by: scottsl
0 Replies

3. Shell Programming and Scripting

If test grep.... always returns 0 status

Hi all. I am trying to compare and filter two files. I have a bigfile.txt of names and ids and a smallfile.txt of ids only. What I am trying to do is use a while read loop to read the ids in the bigfile and then echo the name and id only if the id exists in the small file. Basically, I'm trying to... (5 Replies)
Discussion started by: jameswatson3
5 Replies

4. UNIX for Dummies Questions & Answers

Return alias with pattern

hello all, i have ids repeated with alias names starting with different patterns like 'ab' , 'fg' etc...sometimes the same pattern names are repeated with the same ids like id=1 has names ab1 as well as ab3. Lookup.txt name id ab1 1 fg22 1 ab3 1 er2 1 fgh1 1 fg21 2 ab2 2 ab31 2... (8 Replies)
Discussion started by: jalaj841
8 Replies

5. UNIX for Dummies Questions & Answers

Regular expression question

Hi guys, I need a help with a query. Basically i want to know the difference between (0+01)* and ((0+01)*)* . It seems whatever string can be generated by the first RE can also be generated by second and they should essentially be same. Am i missing something? (1 Reply)
Discussion started by: srkmish
1 Replies