__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
'''OpenGL extension SGIS.texture_edge_clamp
This module customises the behaviour of the
OpenGL.raw.GL.SGIS.texture_edge_clamp to provide a more
Python-friendly API
Overview (from the spec)
The base OpenGL provides clamping such that the texture coordinates are
limited to exactly the range [0,1]. When a texture coordinate is
clamped using this algorithm, the texture sampling filter straddles the
edge of the texture image, taking 1/2 its sample values from within the
texture image, and the other 1/2 from the texture border. It is
sometimes desirable to clamp a texture without requiring a border, and
without using the constant border color.
This extension defines a new texture clamping algorithm.
CLAMP_TO_EDGE_SGIS clamps texture coordinates at all mipmap levels such
that the texture filter never samples a border texel. When used with a
NEAREST or a LINEAR filter, the color returned when clamping is derived
only from texels at the edge of the texture image. When used with
FILTER4 filters, the filter operations of CLAMP_TO_EDGE_SGIS are defined
but don't result in a nice clamp-to-edge color.
CLAMP_TO_EDGE_SGIS is supported by 1, 2, and 3-dimensional textures
only.
The official definition of this extension is available here:
http://www.opengl.org/registry/specs/SGIS/texture_edge_clamp.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.SGIS.texture_edge_clamp import *
from OpenGL.raw.GL.SGIS.texture_edge_clamp import _EXTENSION_NAME
def glInitTextureEdgeClampSGIS():
'''Return boolean indicating whether this extension is available'''
from OpenGL import extensions
return extensions.hasGLExtension( _EXTENSION_NAME )
### END AUTOGENERATED SECTION| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 23 B | 0644 |
|
| detail_texture.py | File | 1.83 KB | 0644 |
|
| fog_function.py | File | 1.41 KB | 0644 |
|
| generate_mipmap.py | File | 1.03 KB | 0644 |
|
| multisample.py | File | 2.21 KB | 0644 |
|
| pixel_texture.py | File | 3.72 KB | 0644 |
|
| point_line_texgen.py | File | 978 B | 0644 |
|
| point_parameters.py | File | 947 B | 0644 |
|
| sharpen_texture.py | File | 1.36 KB | 0644 |
|
| texture4D.py | File | 2.26 KB | 0644 |
|
| texture_border_clamp.py | File | 1.63 KB | 0644 |
|
| texture_color_mask.py | File | 1.32 KB | 0644 |
|
| texture_edge_clamp.py | File | 1.78 KB | 0644 |
|
| texture_filter4.py | File | 1.38 KB | 0644 |
|
| texture_lod.py | File | 1.93 KB | 0644 |
|
| texture_select.py | File | 1.64 KB | 0644 |
|