summaryrefslogtreecommitdiff
path: root/src/mesa/main/queryobj.c
AgeCommit message (Expand)AuthorFilesLines
2013-10-28Remove error when calling glGenQueries/glDeleteQueries while a query is activeCarl Worth1-15/+10
2013-09-06mesa: Ensure gl_query_object is fully initialized.Vinson Lee1-1/+1
2013-09-04mesa: free object labels when deletingTimothy Arceri1-0/+1
2013-08-25mesa: Set query->EverBound in glQueryCounter().Kenneth Graunke1-0/+1
2013-06-05mesa: remove outdated version lines in commentsRico Schüller1-1/+0
2013-04-23mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke1-3/+4
2013-04-23mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke1-1/+1
2013-04-23mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke1-1/+1
2013-04-24mesa: don't flag _NEW_DEPTH in Begin/EndQuery if driver implements the functionsMarek Olšák1-3/+4
2013-04-17mesa: remove #include "mfeatures.h" from numerous source filesBrian Paul1-1/+0
2013-03-01mesa: Add a new QueryCounter() hook for TIMESTAMP queries.Kenneth Graunke1-3/+8
2013-01-21mesa: Initially populate the display list with the exec list.Eric Anholt1-27/+0
2013-01-21mesa: Drop manual checks for outside begin/end.Eric Anholt1-10/+0
2013-01-15queryobj: Add EverBound flag, making ISQuery() return false before BeginQuery()Carl Worth1-3/+18
2013-01-15Update comment to specify actual text being referenced from the specification.Carl Worth1-1/+6
2013-01-11mesa/es3: Add support for GL_ANY_SAMPLES_PASSED_CONSERVATIVE query targetIan Romanick1-2/+10
2012-11-29mesa: Rename API_OPENGL to API_OPENGL_COMPAT.Paul Berry1-1/+1
2012-11-19mesa: Require gen'd names in glBeginQuery on ES 3.0.Kenneth Graunke1-1/+1
2012-11-12mesa: Standardize names of OpenGL functions.Paul Berry1-20/+20
2012-11-08mesa: Fix typo in glDeleteQueriesARB debug message.Kenneth Graunke1-1/+1
2012-11-06dispatch: Make all API functions non-static.Paul Berry1-14/+14
2012-11-04mesa: Fix core GL genned-name handling for glBeginQuery().Eric Anholt1-5/+11
2012-10-23_mesa_create_exec_table: GLES3 fixes.Paul Berry1-8/+12
2012-10-22mesa: Return 0 for GL_CURRENT_QUERY with a mismatched query target.Eric Anholt1-1/+1
2012-10-22mesa: Refuse to EndQuery with a mismatched query target.Eric Anholt1-0/+10
2012-10-22mesa: Throw an error for a new query on an already-active query target.Eric Anholt1-0/+13
2012-09-15mesa: remove FEATURE_EXT_transform_feedback define.Oliver McFadden1-2/+0
2012-09-15mesa: remove FEATURE_queryobj define.Oliver McFadden1-6/+0
2012-08-26mesa: Add constants for the GL_QUERY_COUNTER_BITS per target.Eric Anholt1-1/+36
2012-07-12mesa: implement indexed query functions from ARB_transform_feedback3Marek Olšák1-15/+67
2012-07-10mesa: implement TIMESTAMP query and glQueryCounterMarek Olšák1-6/+72
2011-05-26mesa: make query object API functions staticBrian Paul1-6/+6
2011-03-11mesa: call FLUSH_VERTICES() before deleting shaders, buffers, query objectsBrian Paul1-0/+1
2011-02-08mesa: add/update VERBOSE_API loggingBrian Paul1-0/+38
2011-01-07mesa: Directly include mfeatures.h in files that perform feature tests.Vinson Lee1-0/+1
2010-12-18mesa: fix queryobj whitespace.Dave Airlie1-26/+26
2010-12-18mesa/swrast/st: add ARB_occlusion_query2 support.Dave Airlie1-12/+31
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg1-10/+10
2010-03-30mesa: add new query/buffer targets for transform feedbackBrian Paul1-0/+12
2010-03-30mesa: simplify query code with get_query_binding_point()Brian Paul1-71/+47
2010-02-25mesa: Move src/mesa/glapi/dispatch.h to mesa.Chia-I Wu1-1/+1
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg1-1/+1
2009-12-31mesa: make _mesa_lookup_query_object() an non-private inline functionBrian Paul1-16/+7
2009-09-30mesa/main: New feature FEATURE_queryobj.Chia-I Wu1-19/+29
2009-06-19mesa: make query-related driver fallback functions staticBrian Paul1-6/+18
2009-06-11mesa: add default function for ctx->Driver.CheckQuery() hookBrian Paul1-1/+15
2008-10-07mesa: Pass the context to query object delete cb to avoid null dereference.Eric Anholt1-1/+1
2008-10-06mesa: updated _mesa_delete_query() commentsBrian Paul1-2/+1
2008-10-06mesa: add missing GLcontext param to _mesa_delete_query().Brian Paul1-1/+1
2008-09-21mesa: improved driver query interfaceKeith Whitwell1-52/+65