mesa/src/mapi/glapi
Kenneth Graunke b2e327e08f mesa: Add core support for the GL_AMD_performance_monitor extension.
This provides an interface for applications (and OpenGL-based tools) to
access GPU performance counters.  Since the exact performance counters
available vary between vendors and hardware generations, the extension
provides an API the application can use to get the names, types, and
minimum/maximum values of all available counters.  Counters are also
organized into groups.

Applications create "performance monitor" objects, select the counters
they want to track, and Begin/End monitoring, much like OpenGL's query
API.  Multiple monitors can be in flight simultaneously.

v2: Pass ctx to all driver hooks (suggested by Christoph), and attempt
    to fix overallocation of bitsets (caught by Christoph).  Incomplete.

v3: Significantly rework core data structures.  Store counters in groups
    rather than in a global list.  Use their array index in the group's
    counter list as the ID rather than trying to store a globally unique
    counter ID.  Use bitsets for active counters within a group, and
    also track which groups are active so that's easy to query.

v4: Remove _mesa_ prefix on static functions; detect out of memory
    conditions in new_performance_monitor(); make BeginPerfMonitor hook
    return a boolean rather than setting m->Active or raising an error.
    Switch to GLuint/unsigned for NumGroups, NumCounters, and
    MaxActiveCounters (which also means switching a bunch of temporary
    variable types).  All suggested by Brian Paul.  Also, remove
    commented out code at the bottom of the block.  Finally, fix the
    dispatch sanity test (noticed by Ian Romanick).

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Brian Paul <brianp@vmware.com> [v3]
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2013-09-26 16:55:18 -07:00
..
gen mesa: Add core support for the GL_AMD_performance_monitor extension. 2013-09-26 16:55:18 -07:00
tests Properly check GLX_INDIRECT_RENDERING in glapi/tests/check_table 2013-03-13 14:55:52 +00:00
.gitignore Clean up .gitignore files 2013-01-10 22:01:31 +01:00
glapi.c mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi.h mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi_dispatch.c mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi_entrypoint.c mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi_getproc.c mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi_nop.c mesa: remove outdated version lines in comments 2013-06-05 08:54:27 -06:00
glapi_priv.h mesa: update glext.h to version 20130624 2013-06-26 10:43:27 -06:00
glthread.c glapi: Move public function/variable declarations to glapi.h. 2010-08-21 14:13:59 +08:00
glthread.h build: Move src/mapi/mapi/* to src/mapi/ 2013-04-15 12:04:25 -07:00
Makefile.am build: Add tests directories to SUBDIRS 2013-07-22 10:48:45 -07:00
Makefile.sources build: Rename sources.mak -> Makefile.sources 2013-04-15 12:04:25 -07:00
SConscript scons: Don't force stabs debug format for Mingw. 2013-05-21 12:34:19 +01:00