Skip to content

Commit f2b897e

Browse files
committed
Fix group name chaos a little bit.
1 parent 476a5d4 commit f2b897e

File tree

2 files changed

+43
-36
lines changed

2 files changed

+43
-36
lines changed

RegistryProcessor/src/Main.hs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,8 @@ showComment registry name sigElem
567567
-- TODO: Do not use Show instance for SignatureElement.
568568
hurz = case belongsToGroup sigElem of
569569
Just gn | numPointer sigElem <= 1 &&
570-
gn `M.member` groups registry -> linkToGroup gn
570+
fgn `M.member` groups registry -> linkToGroup fgn
571+
where fgn = fixGroupName gn
571572
_ -> inlineCode (show (base sigElem))
572573

573574
isInteresting = DM.isJust (arrayLength sigElem) || DM.isJust (belongsToGroup sigElem)
@@ -585,6 +586,12 @@ showComment registry name sigElem
585586
| otherwise = e
586587
maybeSetBaseType e = maybe e (\g -> e{baseType = TypeName (unGroupName g)}) (belongsToGroup e)
587588

589+
fixGroupName :: GroupName -> GroupName
590+
fixGroupName g
591+
| g == GroupName "PixelInternalFormat" = GroupName "InternalFormat"
592+
| g == GroupName "SGIXFfdMask" = GroupName "FfdMaskSGIX"
593+
| otherwise = g
594+
588595
-- TODO: This is very fragile, but currently there is no clean way to specify
589596
-- link texts when referencing anchors in Haddock.
590597
linkToGroup :: GroupName -> String

src/Graphics/Rendering/OpenGL/Raw/Functions.hs

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -7319,7 +7319,7 @@ ptr_glColorSubTableEXT = unsafePerformIO $ getCommand "glColorSubTableEXT"
73197319
glColorTable
73207320
:: MonadIO m
73217321
=> GLenum -- ^ @target@ of type @ColorTableTarget@.
7322-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7322+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
73237323
-> GLsizei -- ^ @width@.
73247324
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
73257325
-> GLenum -- ^ @type@ of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).
@@ -7336,7 +7336,7 @@ ptr_glColorTable = unsafePerformIO $ getCommand "glColorTable"
73367336
glColorTableEXT
73377337
:: MonadIO m
73387338
=> GLenum -- ^ @target@ of type @ColorTableTarget@.
7339-
-> GLenum -- ^ @internalFormat@ of type @PixelInternalFormat@.
7339+
-> GLenum -- ^ @internalFormat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
73407340
-> GLsizei -- ^ @width@.
73417341
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
73427342
-> GLenum -- ^ @type@ of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).
@@ -7411,7 +7411,7 @@ ptr_glColorTableParameterivSGI = unsafePerformIO $ getCommand "glColorTableParam
74117411
glColorTableSGI
74127412
:: MonadIO m
74137413
=> GLenum -- ^ @target@ of type [ColorTableTargetSGI](Graphics-Rendering-OpenGL-Raw-Groups.html#ColorTableTargetSGI).
7414-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7414+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
74157415
-> GLsizei -- ^ @width@.
74167416
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
74177417
-> GLenum -- ^ @type@ of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).
@@ -7722,7 +7722,7 @@ glCompressedTexImage1D
77227722
:: MonadIO m
77237723
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
77247724
-> GLint -- ^ @level@ of type @CheckedInt32@.
7725-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7725+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
77267726
-> GLsizei -- ^ @width@.
77277727
-> GLint -- ^ @border@ of type @CheckedInt32@.
77287728
-> GLsizei -- ^ @imageSize@.
@@ -7740,7 +7740,7 @@ glCompressedTexImage1DARB
77407740
:: MonadIO m
77417741
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
77427742
-> GLint -- ^ @level@ of type @CheckedInt32@.
7743-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7743+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
77447744
-> GLsizei -- ^ @width@.
77457745
-> GLint -- ^ @border@ of type @CheckedInt32@.
77467746
-> GLsizei -- ^ @imageSize@.
@@ -7759,7 +7759,7 @@ glCompressedTexImage2D
77597759
:: MonadIO m
77607760
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
77617761
-> GLint -- ^ @level@ of type @CheckedInt32@.
7762-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7762+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
77637763
-> GLsizei -- ^ @width@.
77647764
-> GLsizei -- ^ @height@.
77657765
-> GLint -- ^ @border@ of type @CheckedInt32@.
@@ -7778,7 +7778,7 @@ glCompressedTexImage2DARB
77787778
:: MonadIO m
77797779
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
77807780
-> GLint -- ^ @level@ of type @CheckedInt32@.
7781-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7781+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
77827782
-> GLsizei -- ^ @width@.
77837783
-> GLsizei -- ^ @height@.
77847784
-> GLint -- ^ @border@ of type @CheckedInt32@.
@@ -7798,7 +7798,7 @@ glCompressedTexImage3D
77987798
:: MonadIO m
77997799
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
78007800
-> GLint -- ^ @level@ of type @CheckedInt32@.
7801-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7801+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
78027802
-> GLsizei -- ^ @width@.
78037803
-> GLsizei -- ^ @height@.
78047804
-> GLsizei -- ^ @depth@.
@@ -7818,7 +7818,7 @@ glCompressedTexImage3DARB
78187818
:: MonadIO m
78197819
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
78207820
-> GLint -- ^ @level@ of type @CheckedInt32@.
7821-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
7821+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
78227822
-> GLsizei -- ^ @width@.
78237823
-> GLsizei -- ^ @height@.
78247824
-> GLsizei -- ^ @depth@.
@@ -8202,7 +8202,7 @@ ptr_glConservativeRasterParameterfNV = unsafePerformIO $ getCommand "glConservat
82028202
glConvolutionFilter1D
82038203
:: MonadIO m
82048204
=> GLenum -- ^ @target@ of type @ConvolutionTarget@.
8205-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8205+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
82068206
-> GLsizei -- ^ @width@.
82078207
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
82088208
-> GLenum -- ^ @type@ of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).
@@ -8219,7 +8219,7 @@ ptr_glConvolutionFilter1D = unsafePerformIO $ getCommand "glConvolutionFilter1D"
82198219
glConvolutionFilter1DEXT
82208220
:: MonadIO m
82218221
=> GLenum -- ^ @target@ of type [ConvolutionTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#ConvolutionTargetEXT).
8222-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8222+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
82238223
-> GLsizei -- ^ @width@.
82248224
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
82258225
-> GLenum -- ^ @type@ of type [PixelType](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelType).
@@ -8237,7 +8237,7 @@ ptr_glConvolutionFilter1DEXT = unsafePerformIO $ getCommand "glConvolutionFilter
82378237
glConvolutionFilter2D
82388238
:: MonadIO m
82398239
=> GLenum -- ^ @target@ of type @ConvolutionTarget@.
8240-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8240+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
82418241
-> GLsizei -- ^ @width@.
82428242
-> GLsizei -- ^ @height@.
82438243
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
@@ -8255,7 +8255,7 @@ ptr_glConvolutionFilter2D = unsafePerformIO $ getCommand "glConvolutionFilter2D"
82558255
glConvolutionFilter2DEXT
82568256
:: MonadIO m
82578257
=> GLenum -- ^ @target@ of type [ConvolutionTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#ConvolutionTargetEXT).
8258-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8258+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
82598259
-> GLsizei -- ^ @width@.
82608260
-> GLsizei -- ^ @height@.
82618261
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
@@ -8484,7 +8484,7 @@ ptr_glCopyColorSubTableEXT = unsafePerformIO $ getCommand "glCopyColorSubTableEX
84848484
glCopyColorTable
84858485
:: MonadIO m
84868486
=> GLenum -- ^ @target@ of type @ColorTableTarget@.
8487-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8487+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
84888488
-> GLint -- ^ @x@ of type @WinCoord@.
84898489
-> GLint -- ^ @y@ of type @WinCoord@.
84908490
-> GLsizei -- ^ @width@.
@@ -8500,7 +8500,7 @@ ptr_glCopyColorTable = unsafePerformIO $ getCommand "glCopyColorTable"
85008500
glCopyColorTableSGI
85018501
:: MonadIO m
85028502
=> GLenum -- ^ @target@ of type [ColorTableTargetSGI](Graphics-Rendering-OpenGL-Raw-Groups.html#ColorTableTargetSGI).
8503-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8503+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
85048504
-> GLint -- ^ @x@ of type @WinCoord@.
85058505
-> GLint -- ^ @y@ of type @WinCoord@.
85068506
-> GLsizei -- ^ @width@.
@@ -8517,7 +8517,7 @@ ptr_glCopyColorTableSGI = unsafePerformIO $ getCommand "glCopyColorTableSGI"
85178517
glCopyConvolutionFilter1D
85188518
:: MonadIO m
85198519
=> GLenum -- ^ @target@ of type @ConvolutionTarget@.
8520-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8520+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
85218521
-> GLint -- ^ @x@ of type @WinCoord@.
85228522
-> GLint -- ^ @y@ of type @WinCoord@.
85238523
-> GLsizei -- ^ @width@.
@@ -8533,7 +8533,7 @@ ptr_glCopyConvolutionFilter1D = unsafePerformIO $ getCommand "glCopyConvolutionF
85338533
glCopyConvolutionFilter1DEXT
85348534
:: MonadIO m
85358535
=> GLenum -- ^ @target@ of type [ConvolutionTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#ConvolutionTargetEXT).
8536-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8536+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
85378537
-> GLint -- ^ @x@ of type @WinCoord@.
85388538
-> GLint -- ^ @y@ of type @WinCoord@.
85398539
-> GLsizei -- ^ @width@.
@@ -8550,7 +8550,7 @@ ptr_glCopyConvolutionFilter1DEXT = unsafePerformIO $ getCommand "glCopyConvoluti
85508550
glCopyConvolutionFilter2D
85518551
:: MonadIO m
85528552
=> GLenum -- ^ @target@ of type @ConvolutionTarget@.
8553-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8553+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
85548554
-> GLint -- ^ @x@ of type @WinCoord@.
85558555
-> GLint -- ^ @y@ of type @WinCoord@.
85568556
-> GLsizei -- ^ @width@.
@@ -8567,7 +8567,7 @@ ptr_glCopyConvolutionFilter2D = unsafePerformIO $ getCommand "glCopyConvolutionF
85678567
glCopyConvolutionFilter2DEXT
85688568
:: MonadIO m
85698569
=> GLenum -- ^ @target@ of type [ConvolutionTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#ConvolutionTargetEXT).
8570-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8570+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
85718571
-> GLint -- ^ @x@ of type @WinCoord@.
85728572
-> GLint -- ^ @y@ of type @WinCoord@.
85738573
-> GLsizei -- ^ @width@.
@@ -8836,7 +8836,7 @@ glCopyTexImage1D
88368836
:: MonadIO m
88378837
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
88388838
-> GLint -- ^ @level@ of type @CheckedInt32@.
8839-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8839+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
88408840
-> GLint -- ^ @x@ of type @WinCoord@.
88418841
-> GLint -- ^ @y@ of type @WinCoord@.
88428842
-> GLsizei -- ^ @width@.
@@ -8854,7 +8854,7 @@ glCopyTexImage1DEXT
88548854
:: MonadIO m
88558855
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
88568856
-> GLint -- ^ @level@ of type @CheckedInt32@.
8857-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8857+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
88588858
-> GLint -- ^ @x@ of type @WinCoord@.
88598859
-> GLint -- ^ @y@ of type @WinCoord@.
88608860
-> GLsizei -- ^ @width@.
@@ -8873,7 +8873,7 @@ glCopyTexImage2D
88738873
:: MonadIO m
88748874
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
88758875
-> GLint -- ^ @level@ of type @CheckedInt32@.
8876-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8876+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
88778877
-> GLint -- ^ @x@ of type @WinCoord@.
88788878
-> GLint -- ^ @y@ of type @WinCoord@.
88798879
-> GLsizei -- ^ @width@.
@@ -8892,7 +8892,7 @@ glCopyTexImage2DEXT
88928892
:: MonadIO m
88938893
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
88948894
-> GLint -- ^ @level@ of type @CheckedInt32@.
8895-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
8895+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
88968896
-> GLint -- ^ @x@ of type @WinCoord@.
88978897
-> GLint -- ^ @y@ of type @WinCoord@.
88988898
-> GLsizei -- ^ @width@.
@@ -22260,7 +22260,7 @@ glHistogram
2226022260
:: MonadIO m
2226122261
=> GLenum -- ^ @target@ of type @HistogramTarget@.
2226222262
-> GLsizei -- ^ @width@.
22263-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
22263+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2226422264
-> GLboolean -- ^ @sink@ of type [Boolean](Graphics-Rendering-OpenGL-Raw-Groups.html#Boolean).
2226522265
-> m ()
2226622266
glHistogram v1 v2 v3 v4 = liftIO $ dyn461 ptr_glHistogram v1 v2 v3 v4
@@ -22275,7 +22275,7 @@ glHistogramEXT
2227522275
:: MonadIO m
2227622276
=> GLenum -- ^ @target@ of type [HistogramTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#HistogramTargetEXT).
2227722277
-> GLsizei -- ^ @width@.
22278-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
22278+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2227922279
-> GLboolean -- ^ @sink@ of type [Boolean](Graphics-Rendering-OpenGL-Raw-Groups.html#Boolean).
2228022280
-> m ()
2228122281
glHistogramEXT v1 v2 v3 v4 = liftIO $ dyn461 ptr_glHistogramEXT v1 v2 v3 v4
@@ -25407,7 +25407,7 @@ ptr_glMinSampleShadingOES = unsafePerformIO $ getCommand "glMinSampleShadingOES"
2540725407
glMinmax
2540825408
:: MonadIO m
2540925409
=> GLenum -- ^ @target@ of type @MinmaxTarget@.
25410-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
25410+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2541125411
-> GLboolean -- ^ @sink@ of type [Boolean](Graphics-Rendering-OpenGL-Raw-Groups.html#Boolean).
2541225412
-> m ()
2541325413
glMinmax v1 v2 v3 = liftIO $ dyn519 ptr_glMinmax v1 v2 v3
@@ -25421,7 +25421,7 @@ ptr_glMinmax = unsafePerformIO $ getCommand "glMinmax"
2542125421
glMinmaxEXT
2542225422
:: MonadIO m
2542325423
=> GLenum -- ^ @target@ of type [MinmaxTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#MinmaxTargetEXT).
25424-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
25424+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2542525425
-> GLboolean -- ^ @sink@ of type [Boolean](Graphics-Rendering-OpenGL-Raw-Groups.html#Boolean).
2542625426
-> m ()
2542725427
glMinmaxEXT v1 v2 v3 = liftIO $ dyn519 ptr_glMinmaxEXT v1 v2 v3
@@ -28318,7 +28318,7 @@ ptr_glNamedRenderbufferStorage = unsafePerformIO $ getCommand "glNamedRenderbuff
2831828318
glNamedRenderbufferStorageEXT
2831928319
:: MonadIO m
2832028320
=> GLuint -- ^ @renderbuffer@ of type @Renderbuffer@.
28321-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
28321+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2832228322
-> GLsizei -- ^ @width@.
2832328323
-> GLsizei -- ^ @height@.
2832428324
-> m ()
@@ -28352,7 +28352,7 @@ glNamedRenderbufferStorageMultisampleCoverageEXT
2835228352
=> GLuint -- ^ @renderbuffer@ of type @Renderbuffer@.
2835328353
-> GLsizei -- ^ @coverageSamples@.
2835428354
-> GLsizei -- ^ @colorSamples@.
28355-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
28355+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2835628356
-> GLsizei -- ^ @width@.
2835728357
-> GLsizei -- ^ @height@.
2835828358
-> m ()
@@ -28368,7 +28368,7 @@ glNamedRenderbufferStorageMultisampleEXT
2836828368
:: MonadIO m
2836928369
=> GLuint -- ^ @renderbuffer@ of type @Renderbuffer@.
2837028370
-> GLsizei -- ^ @samples@.
28371-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
28371+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
2837228372
-> GLsizei -- ^ @width@.
2837328373
-> GLsizei -- ^ @height@.
2837428374
-> m ()
@@ -34407,7 +34407,7 @@ glRenderbufferStorageMultisampleCoverageNV
3440734407
=> GLenum -- ^ @target@ of type @RenderbufferTarget@.
3440834408
-> GLsizei -- ^ @coverageSamples@.
3440934409
-> GLsizei -- ^ @colorSamples@.
34410-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
34410+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
3441134411
-> GLsizei -- ^ @width@.
3441234412
-> GLsizei -- ^ @height@.
3441334413
-> m ()
@@ -36049,7 +36049,7 @@ ptr_glSelectPerfMonitorCountersAMD = unsafePerformIO $ getCommand "glSelectPerfM
3604936049
glSeparableFilter2D
3605036050
:: MonadIO m
3605136051
=> GLenum -- ^ @target@ of type @SeparableTarget@.
36052-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
36052+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
3605336053
-> GLsizei -- ^ @width@.
3605436054
-> GLsizei -- ^ @height@.
3605536055
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
@@ -36068,7 +36068,7 @@ ptr_glSeparableFilter2D = unsafePerformIO $ getCommand "glSeparableFilter2D"
3606836068
glSeparableFilter2DEXT
3606936069
:: MonadIO m
3607036070
=> GLenum -- ^ @target@ of type [SeparableTargetEXT](Graphics-Rendering-OpenGL-Raw-Groups.html#SeparableTargetEXT).
36071-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
36071+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
3607236072
-> GLsizei -- ^ @width@.
3607336073
-> GLsizei -- ^ @height@.
3607436074
-> GLenum -- ^ @format@ of type [PixelFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#PixelFormat).
@@ -38673,7 +38673,7 @@ glTexImage3DEXT
3867338673
:: MonadIO m
3867438674
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
3867538675
-> GLint -- ^ @level@ of type @CheckedInt32@.
38676-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
38676+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
3867738677
-> GLsizei -- ^ @width@.
3867838678
-> GLsizei -- ^ @height@.
3867938679
-> GLsizei -- ^ @depth@.
@@ -38753,7 +38753,7 @@ glTexImage4DSGIS
3875338753
:: MonadIO m
3875438754
=> GLenum -- ^ @target@ of type [TextureTarget](Graphics-Rendering-OpenGL-Raw-Groups.html#TextureTarget).
3875538755
-> GLint -- ^ @level@ of type @CheckedInt32@.
38756-
-> GLenum -- ^ @internalformat@ of type @PixelInternalFormat@.
38756+
-> GLenum -- ^ @internalformat@ of type [InternalFormat](Graphics-Rendering-OpenGL-Raw-Groups.html#InternalFormat).
3875738757
-> GLsizei -- ^ @width@.
3875838758
-> GLsizei -- ^ @height@.
3875938759
-> GLsizei -- ^ @depth@.

0 commit comments

Comments
 (0)