mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-03 04:51:31 +00:00
Start of ARB_imaging enum cleanup.
This commit is contained in:
parent
73852276a4
commit
7922243aef
|
@ -151,12 +151,12 @@ ARB_imaging enum:
|
||||||
CONSTANT_ALPHA = 0x8003
|
CONSTANT_ALPHA = 0x8003
|
||||||
ONE_MINUS_CONSTANT_ALPHA = 0x8004
|
ONE_MINUS_CONSTANT_ALPHA = 0x8004
|
||||||
BLEND_COLOR = 0x8005 # 4 F
|
BLEND_COLOR = 0x8005 # 4 F
|
||||||
FUNC_ADD = 0x8006 # Equivalent to EXT_blend_minmax
|
# FUNC_ADD = 0x8006 # Equivalent to EXT_blend_minmax
|
||||||
MIN = 0x8007
|
# MIN = 0x8007
|
||||||
MAX = 0x8008
|
# MAX = 0x8008
|
||||||
BLEND_EQUATION = 0x8009 # 1 I
|
BLEND_EQUATION = 0x8009 # 1 I
|
||||||
FUNC_SUBTRACT = 0x800A # Equivalent to EXT_blend_subtract
|
# FUNC_SUBTRACT = 0x800A # Equivalent to EXT_blend_subtract
|
||||||
FUNC_REVERSE_SUBTRACT = 0x800B
|
# FUNC_REVERSE_SUBTRACT = 0x800B
|
||||||
CONVOLUTION_1D = 0x8010 # 1 I # Equivalent to EXT_convolution
|
CONVOLUTION_1D = 0x8010 # 1 I # Equivalent to EXT_convolution
|
||||||
CONVOLUTION_2D = 0x8011 # 1 I
|
CONVOLUTION_2D = 0x8011 # 1 I
|
||||||
SEPARABLE_2D = 0x8012 # 1 I
|
SEPARABLE_2D = 0x8012 # 1 I
|
||||||
|
@ -225,6 +225,13 @@ ARB_imaging enum:
|
||||||
MatrixMode enum:
|
MatrixMode enum:
|
||||||
use PixelCopyType COLOR # <summary>Supported by the ARB_imaging extension</summary>
|
use PixelCopyType COLOR # <summary>Supported by the ARB_imaging extension</summary>
|
||||||
|
|
||||||
|
BlendEquationMode enum:
|
||||||
|
FUNC_ADD = 0x8006 # Equivalent to EXT_blend_minmax
|
||||||
|
MIN = 0x8007
|
||||||
|
MAX = 0x8008
|
||||||
|
FUNC_SUBTRACT = 0x800A # Equivalent to EXT_blend_subtract
|
||||||
|
FUNC_REVERSE_SUBTRACT = 0x800B
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# OpenGL 1.3 enums (edited for OpenTK)
|
# OpenGL 1.3 enums (edited for OpenTK)
|
||||||
|
|
Loading…
Reference in a new issue