File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Graphics/Rendering/OpenGL/GL/Texturing Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -152,10 +152,10 @@ texImage2D target proxy level int (TextureSize2D w h) border pd =
152
152
153
153
TEXTURE_3D
154
154
TEXTURE_2D_ARRAY
155
- TEXTURE_CUBE_MAP_ARRAY ???????
155
+ TEXTURE_CUBE_MAP_ARRAY
156
156
PROXY_TEXTURE_3D
157
157
PROXY_TEXTURE_2D_ARRAY
158
- PROXY_TEXTURE_CUBE_MAP_ARRAY ???????
158
+ PROXY_TEXTURE_CUBE_MAP_ARRAY
159
159
160
160
Note: No TEXTURE_2D_MULTISAMPLE_ARRAY or PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY
161
161
targets! For these use glTexImage3DMultisample.
@@ -292,7 +292,8 @@ compressedTexImage1D target proxy level (TextureSize1D w) border cpd =
292
292
293
293
--------------------------------------------------------------------------------
294
294
295
- -- see texImage2D (but no rectangle texture formats!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!)
295
+ -- see texImage2D, but note that the spec currently disallows TextureRectangle,
296
+ -- but then again the extension explicitly allows a relaxation in the future.
296
297
compressedTexImage2D :: TwoDimensionalTextureTarget t => t -> Proxy -> Level -> TextureSize2D -> Border -> CompressedPixelData a -> IO ()
297
298
compressedTexImage2D target proxy level (TextureSize2D w h) border cpd =
298
299
withCompressedPixelData cpd $ \ fmt ->
You can’t perform that action at this time.
0 commit comments