qopengltexture.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB).
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QOPENGLABSTRACTTEXTURE_H
  40. #define QOPENGLABSTRACTTEXTURE_H
  41. #include <QtCore/qglobal.h>
  42. #ifndef QT_NO_OPENGL
  43. #include <QtGui/qopengl.h>
  44. #include <QtGui/qimage.h>
  45. #include <QtCore/QScopedPointer>
  46. QT_BEGIN_NAMESPACE
  47. class QOpenGLTexturePrivate;
  48. class QOpenGLPixelTransferOptions;
  49. class Q_GUI_EXPORT QOpenGLTexture
  50. {
  51. Q_GADGET
  52. public:
  53. enum Target {
  54. Target1D = 0x0DE0, // GL_TEXTURE_1D
  55. Target1DArray = 0x8C18, // GL_TEXTURE_1D_ARRAY
  56. Target2D = 0x0DE1, // GL_TEXTURE_2D
  57. Target2DArray = 0x8C1A, // GL_TEXTURE_2D_ARRAY
  58. Target3D = 0x806F, // GL_TEXTURE_3D
  59. TargetCubeMap = 0x8513, // GL_TEXTURE_CUBE_MAP
  60. TargetCubeMapArray = 0x9009, // GL_TEXTURE_CUBE_MAP_ARRAY
  61. Target2DMultisample = 0x9100, // GL_TEXTURE_2D_MULTISAMPLE
  62. Target2DMultisampleArray = 0x9102, // GL_TEXTURE_2D_MULTISAMPLE_ARRAY
  63. TargetRectangle = 0x84F5, // GL_TEXTURE_RECTANGLE
  64. TargetBuffer = 0x8C2A // GL_TEXTURE_BUFFER
  65. };
  66. Q_ENUM(Target)
  67. enum BindingTarget {
  68. BindingTarget1D = 0x8068, // GL_TEXTURE_BINDING_1D
  69. BindingTarget1DArray = 0x8C1C, // GL_TEXTURE_BINDING_1D_ARRAY
  70. BindingTarget2D = 0x8069, // GL_TEXTURE_BINDING_2D
  71. BindingTarget2DArray = 0x8C1D, // GL_TEXTURE_BINDING_2D_ARRAY
  72. BindingTarget3D = 0x806A, // GL_TEXTURE_BINDING_3D
  73. BindingTargetCubeMap = 0x8514, // GL_TEXTURE_BINDING_CUBE_MAP
  74. BindingTargetCubeMapArray = 0x900A, // GL_TEXTURE_BINDING_CUBE_MAP_ARRAY
  75. BindingTarget2DMultisample = 0x9104, // GL_TEXTURE_BINDING_2D_MULTISAMPLE
  76. BindingTarget2DMultisampleArray = 0x9105, // GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY
  77. BindingTargetRectangle = 0x84F6, // GL_TEXTURE_BINDING_RECTANGLE
  78. BindingTargetBuffer = 0x8C2C // GL_TEXTURE_BINDING_BUFFER
  79. };
  80. Q_ENUM(BindingTarget)
  81. enum MipMapGeneration {
  82. GenerateMipMaps,
  83. DontGenerateMipMaps
  84. };
  85. Q_ENUM(MipMapGeneration)
  86. enum TextureUnitReset {
  87. ResetTextureUnit,
  88. DontResetTextureUnit
  89. };
  90. Q_ENUM(TextureUnitReset)
  91. enum TextureFormat {
  92. NoFormat = 0, // GL_NONE
  93. // Unsigned normalized formats
  94. R8_UNorm = 0x8229, // GL_R8
  95. RG8_UNorm = 0x822B, // GL_RG8
  96. RGB8_UNorm = 0x8051, // GL_RGB8
  97. RGBA8_UNorm = 0x8058, // GL_RGBA8
  98. R16_UNorm = 0x822A, // GL_R16
  99. RG16_UNorm = 0x822C, // GL_RG16
  100. RGB16_UNorm = 0x8054, // GL_RGB16
  101. RGBA16_UNorm = 0x805B, // GL_RGBA16
  102. // Signed normalized formats
  103. R8_SNorm = 0x8F94, // GL_R8_SNORM
  104. RG8_SNorm = 0x8F95, // GL_RG8_SNORM
  105. RGB8_SNorm = 0x8F96, // GL_RGB8_SNORM
  106. RGBA8_SNorm = 0x8F97, // GL_RGBA8_SNORM
  107. R16_SNorm = 0x8F98, // GL_R16_SNORM
  108. RG16_SNorm = 0x8F99, // GL_RG16_SNORM
  109. RGB16_SNorm = 0x8F9A, // GL_RGB16_SNORM
  110. RGBA16_SNorm = 0x8F9B, // GL_RGBA16_SNORM
  111. // Unsigned integer formats
  112. R8U = 0x8232, // GL_R8UI
  113. RG8U = 0x8238, // GL_RG8UI
  114. RGB8U = 0x8D7D, // GL_RGB8UI
  115. RGBA8U = 0x8D7C, // GL_RGBA8UI
  116. R16U = 0x8234, // GL_R16UI
  117. RG16U = 0x823A, // GL_RG16UI
  118. RGB16U = 0x8D77, // GL_RGB16UI
  119. RGBA16U = 0x8D76, // GL_RGBA16UI
  120. R32U = 0x8236, // GL_R32UI
  121. RG32U = 0x823C, // GL_RG32UI
  122. RGB32U = 0x8D71, // GL_RGB32UI
  123. RGBA32U = 0x8D70, // GL_RGBA32UI
  124. // Signed integer formats
  125. R8I = 0x8231, // GL_R8I
  126. RG8I = 0x8237, // GL_RG8I
  127. RGB8I = 0x8D8F, // GL_RGB8I
  128. RGBA8I = 0x8D8E, // GL_RGBA8I
  129. R16I = 0x8233, // GL_R16I
  130. RG16I = 0x8239, // GL_RG16I
  131. RGB16I = 0x8D89, // GL_RGB16I
  132. RGBA16I = 0x8D88, // GL_RGBA16I
  133. R32I = 0x8235, // GL_R32I
  134. RG32I = 0x823B, // GL_RG32I
  135. RGB32I = 0x8D83, // GL_RGB32I
  136. RGBA32I = 0x8D82, // GL_RGBA32I
  137. // Floating point formats
  138. R16F = 0x822D, // GL_R16F
  139. RG16F = 0x822F, // GL_RG16F
  140. RGB16F = 0x881B, // GL_RGB16F
  141. RGBA16F = 0x881A, // GL_RGBA16F
  142. R32F = 0x822E, // GL_R32F
  143. RG32F = 0x8230, // GL_RG32F
  144. RGB32F = 0x8815, // GL_RGB32F
  145. RGBA32F = 0x8814, // GL_RGBA32F
  146. // Packed formats
  147. RGB9E5 = 0x8C3D, // GL_RGB9_E5
  148. RG11B10F = 0x8C3A, // GL_R11F_G11F_B10F
  149. RG3B2 = 0x2A10, // GL_R3_G3_B2
  150. R5G6B5 = 0x8D62, // GL_RGB565
  151. RGB5A1 = 0x8057, // GL_RGB5_A1
  152. RGBA4 = 0x8056, // GL_RGBA4
  153. RGB10A2 = 0x906F, // GL_RGB10_A2UI
  154. // Depth formats
  155. D16 = 0x81A5, // GL_DEPTH_COMPONENT16
  156. D24 = 0x81A6, // GL_DEPTH_COMPONENT24
  157. D24S8 = 0x88F0, // GL_DEPTH24_STENCIL8
  158. D32 = 0x81A7, // GL_DEPTH_COMPONENT32
  159. D32F = 0x8CAC, // GL_DEPTH_COMPONENT32F
  160. D32FS8X24 = 0x8CAD, // GL_DEPTH32F_STENCIL8
  161. S8 = 0x8D48, // GL_STENCIL_INDEX8
  162. // Compressed formats
  163. RGB_DXT1 = 0x83F0, // GL_COMPRESSED_RGB_S3TC_DXT1_EXT
  164. RGBA_DXT1 = 0x83F1, // GL_COMPRESSED_RGBA_S3TC_DXT1_EXT
  165. RGBA_DXT3 = 0x83F2, // GL_COMPRESSED_RGBA_S3TC_DXT3_EXT
  166. RGBA_DXT5 = 0x83F3, // GL_COMPRESSED_RGBA_S3TC_DXT5_EXT
  167. R_ATI1N_UNorm = 0x8DBB, // GL_COMPRESSED_RED_RGTC1
  168. R_ATI1N_SNorm = 0x8DBC, // GL_COMPRESSED_SIGNED_RED_RGTC1
  169. RG_ATI2N_UNorm = 0x8DBD, // GL_COMPRESSED_RG_RGTC2
  170. RG_ATI2N_SNorm = 0x8DBE, // GL_COMPRESSED_SIGNED_RG_RGTC2
  171. RGB_BP_UNSIGNED_FLOAT = 0x8E8F, // GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB
  172. RGB_BP_SIGNED_FLOAT = 0x8E8E, // GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB
  173. RGB_BP_UNorm = 0x8E8C, // GL_COMPRESSED_RGBA_BPTC_UNORM_ARB
  174. R11_EAC_UNorm = 0x9270, // GL_COMPRESSED_R11_EAC
  175. R11_EAC_SNorm = 0x9271, // GL_COMPRESSED_SIGNED_R11_EAC
  176. RG11_EAC_UNorm = 0x9272, // GL_COMPRESSED_RG11_EAC
  177. RG11_EAC_SNorm = 0x9273, // GL_COMPRESSED_SIGNED_RG11_EAC
  178. RGB8_ETC2 = 0x9274, // GL_COMPRESSED_RGB8_ETC2
  179. SRGB8_ETC2 = 0x9275, // GL_COMPRESSED_SRGB8_ETC2
  180. RGB8_PunchThrough_Alpha1_ETC2 = 0x9276, // GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2
  181. SRGB8_PunchThrough_Alpha1_ETC2 = 0x9277, // GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2
  182. RGBA8_ETC2_EAC = 0x9278, // GL_COMPRESSED_RGBA8_ETC2_EAC
  183. SRGB8_Alpha8_ETC2_EAC = 0x9279, // GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC
  184. RGB8_ETC1 = 0x8D64, // GL_ETC1_RGB8_OES
  185. // sRGB formats
  186. SRGB8 = 0x8C41, // GL_SRGB8
  187. SRGB8_Alpha8 = 0x8C43, // GL_SRGB8_ALPHA8
  188. SRGB_DXT1 = 0x8C4C, // GL_COMPRESSED_SRGB_S3TC_DXT1_EXT
  189. SRGB_Alpha_DXT1 = 0x8C4D, // GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT
  190. SRGB_Alpha_DXT3 = 0x8C4E, // GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT
  191. SRGB_Alpha_DXT5 = 0x8C4F, // GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT
  192. SRGB_BP_UNorm = 0x8E8D, // GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB
  193. // ES 2 formats
  194. DepthFormat = 0x1902, // GL_DEPTH_COMPONENT
  195. AlphaFormat = 0x1906, // GL_ALPHA
  196. RGBFormat = 0x1907, // GL_RGB
  197. RGBAFormat = 0x1908, // GL_RGBA
  198. LuminanceFormat = 0x1909, // GL_LUMINANCE
  199. LuminanceAlphaFormat = 0x190A
  200. };
  201. Q_ENUM(TextureFormat)
  202. // This is not used externally yet but is reserved to allow checking of
  203. // compatibility between texture formats
  204. #ifndef Q_QDOC
  205. enum TextureFormatClass {
  206. NoFormatClass,
  207. FormatClass_128Bit,
  208. FormatClass_96Bit,
  209. FormatClass_64Bit,
  210. FormatClass_48Bit,
  211. FormatClass_32Bit,
  212. FormatClass_24Bit,
  213. FormatClass_16Bit,
  214. FormatClass_8Bit,
  215. FormatClass_RGTC1_R,
  216. FormatClass_RGTC2_RG,
  217. FormatClass_BPTC_Unorm,
  218. FormatClass_BPTC_Float,
  219. FormatClass_S3TC_DXT1_RGB,
  220. FormatClass_S3TC_DXT1_RGBA,
  221. FormatClass_S3TC_DXT3_RGBA,
  222. FormatClass_S3TC_DXT5_RGBA,
  223. FormatClass_Unique
  224. };
  225. #endif
  226. enum CubeMapFace {
  227. CubeMapPositiveX = 0x8515, // GL_TEXTURE_CUBE_MAP_POSITIVE_X
  228. CubeMapNegativeX = 0x8516, // GL_TEXTURE_CUBE_MAP_NEGATIVE_X
  229. CubeMapPositiveY = 0x8517, // GL_TEXTURE_CUBE_MAP_POSITIVE_Y
  230. CubeMapNegativeY = 0x8518, // GL_TEXTURE_CUBE_MAP_NEGATIVE_Y
  231. CubeMapPositiveZ = 0x8519, // GL_TEXTURE_CUBE_MAP_POSITIVE_Z
  232. CubeMapNegativeZ = 0x851A // GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
  233. };
  234. Q_ENUM(CubeMapFace)
  235. enum PixelFormat {
  236. NoSourceFormat = 0, // GL_NONE
  237. Red = 0x1903, // GL_RED
  238. RG = 0x8227, // GL_RG
  239. RGB = 0x1907, // GL_RGB
  240. BGR = 0x80E0, // GL_BGR
  241. RGBA = 0x1908, // GL_RGBA
  242. BGRA = 0x80E1, // GL_BGRA
  243. Red_Integer = 0x8D94, // GL_RED_INTEGER
  244. RG_Integer = 0x8228, // GL_RG_INTEGER
  245. RGB_Integer = 0x8D98, // GL_RGB_INTEGER
  246. BGR_Integer = 0x8D9A, // GL_BGR_INTEGER
  247. RGBA_Integer = 0x8D99, // GL_RGBA_INTEGER
  248. BGRA_Integer = 0x8D9B, // GL_BGRA_INTEGER
  249. Stencil = 0x1901, // GL_STENCIL_INDEX
  250. Depth = 0x1902, // GL_DEPTH_COMPONENT
  251. DepthStencil = 0x84F9, // GL_DEPTH_STENCIL
  252. Alpha = 0x1906, // GL_ALPHA
  253. Luminance = 0x1909, // GL_LUMINANCE
  254. LuminanceAlpha = 0x190A // GL_LUMINANCE_ALPHA
  255. };
  256. Q_ENUM(PixelFormat)
  257. enum PixelType {
  258. NoPixelType = 0, // GL_NONE
  259. Int8 = 0x1400, // GL_BYTE
  260. UInt8 = 0x1401, // GL_UNSIGNED_BYTE
  261. Int16 = 0x1402, // GL_SHORT
  262. UInt16 = 0x1403, // GL_UNSIGNED_SHORT
  263. Int32 = 0x1404, // GL_INT
  264. UInt32 = 0x1405, // GL_UNSIGNED_INT
  265. Float16 = 0x140B, // GL_HALF_FLOAT
  266. Float16OES = 0x8D61, // GL_HALF_FLOAT_OES
  267. Float32 = 0x1406, // GL_FLOAT
  268. UInt32_RGB9_E5 = 0x8C3E, // GL_UNSIGNED_INT_5_9_9_9_REV
  269. UInt32_RG11B10F = 0x8C3B, // GL_UNSIGNED_INT_10F_11F_11F_REV
  270. UInt8_RG3B2 = 0x8032, // GL_UNSIGNED_BYTE_3_3_2
  271. UInt8_RG3B2_Rev = 0x8362, // GL_UNSIGNED_BYTE_2_3_3_REV
  272. UInt16_RGB5A1 = 0x8034, // GL_UNSIGNED_SHORT_5_5_5_1
  273. UInt16_RGB5A1_Rev = 0x8366, // GL_UNSIGNED_SHORT_1_5_5_5_REV
  274. UInt16_R5G6B5 = 0x8363, // GL_UNSIGNED_SHORT_5_6_5
  275. UInt16_R5G6B5_Rev = 0x8364, // GL_UNSIGNED_SHORT_5_6_5_REV
  276. UInt16_RGBA4 = 0x8033, // GL_UNSIGNED_SHORT_4_4_4_4
  277. UInt16_RGBA4_Rev = 0x8365, // GL_UNSIGNED_SHORT_4_4_4_4_REV
  278. UInt32_RGBA8 = 0x8035, // GL_UNSIGNED_INT_8_8_8_8
  279. UInt32_RGBA8_Rev = 0x8367, // GL_UNSIGNED_INT_8_8_8_8_REV
  280. UInt32_RGB10A2 = 0x8036, // GL_UNSIGNED_INT_10_10_10_2
  281. UInt32_RGB10A2_Rev = 0x8368, // GL_UNSIGNED_INT_2_10_10_10_REV
  282. UInt32_D24S8 = 0x84FA, // GL_UNSIGNED_INT_24_8
  283. Float32_D32_UInt32_S8_X24 = 0x8DAD // GL_FLOAT_32_UNSIGNED_INT_24_8_REV
  284. };
  285. Q_ENUM(PixelType)
  286. enum SwizzleComponent {
  287. SwizzleRed = 0x8E42, // GL_TEXTURE_SWIZZLE_R
  288. SwizzleGreen = 0x8E43, // GL_TEXTURE_SWIZZLE_G
  289. SwizzleBlue = 0x8E44, // GL_TEXTURE_SWIZZLE_B
  290. SwizzleAlpha = 0x8E45 // GL_TEXTURE_SWIZZLE_A
  291. };
  292. Q_ENUM(SwizzleComponent)
  293. enum SwizzleValue {
  294. RedValue = 0x1903, // GL_RED
  295. GreenValue = 0x1904, // GL_GREEN
  296. BlueValue = 0x1905, // GL_BLUE
  297. AlphaValue = 0x1906, // GL_ALPHA
  298. ZeroValue = 0, // GL_ZERO
  299. OneValue = 1 // GL_ONE
  300. };
  301. Q_ENUM(SwizzleValue)
  302. enum WrapMode {
  303. Repeat = 0x2901, // GL_REPEAT
  304. MirroredRepeat = 0x8370, // GL_MIRRORED_REPEAT
  305. ClampToEdge = 0x812F, // GL_CLAMP_TO_EDGE
  306. ClampToBorder = 0x812D // GL_CLAMP_TO_BORDER
  307. };
  308. Q_ENUM(WrapMode)
  309. enum CoordinateDirection {
  310. DirectionS = 0x2802, // GL_TEXTURE_WRAP_S
  311. DirectionT = 0x2803, // GL_TEXTURE_WRAP_T
  312. DirectionR = 0x8072 // GL_TEXTURE_WRAP_R
  313. };
  314. Q_ENUM(CoordinateDirection)
  315. // Features
  316. enum Feature {
  317. ImmutableStorage = 0x00000001,
  318. ImmutableMultisampleStorage = 0x00000002,
  319. TextureRectangle = 0x00000004,
  320. TextureArrays = 0x00000008,
  321. Texture3D = 0x00000010,
  322. TextureMultisample = 0x00000020,
  323. TextureBuffer = 0x00000040,
  324. TextureCubeMapArrays = 0x00000080,
  325. Swizzle = 0x00000100,
  326. StencilTexturing = 0x00000200,
  327. AnisotropicFiltering = 0x00000400,
  328. NPOTTextures = 0x00000800,
  329. NPOTTextureRepeat = 0x00001000,
  330. Texture1D = 0x00002000,
  331. TextureComparisonOperators = 0x00004000,
  332. TextureMipMapLevel = 0x00008000,
  333. #ifndef Q_QDOC
  334. MaxFeatureFlag = 0x00010000
  335. #endif
  336. };
  337. Q_DECLARE_FLAGS(Features, Feature)
  338. Q_ENUM(Feature)
  339. explicit QOpenGLTexture(Target target);
  340. explicit QOpenGLTexture(const QImage& image, MipMapGeneration genMipMaps = GenerateMipMaps);
  341. ~QOpenGLTexture();
  342. Target target() const;
  343. // Creation and destruction
  344. bool create();
  345. void destroy();
  346. bool isCreated() const;
  347. GLuint textureId() const;
  348. // Binding and releasing
  349. void bind();
  350. void bind(uint unit, TextureUnitReset reset = DontResetTextureUnit);
  351. void release();
  352. void release(uint unit, TextureUnitReset reset = DontResetTextureUnit);
  353. bool isBound() const;
  354. bool isBound(uint unit);
  355. static GLuint boundTextureId(BindingTarget target);
  356. static GLuint boundTextureId(uint unit, BindingTarget target);
  357. // Storage allocation
  358. void setFormat(TextureFormat format);
  359. TextureFormat format() const;
  360. void setSize(int width, int height = 1, int depth = 1);
  361. int width() const;
  362. int height() const;
  363. int depth() const;
  364. void setMipLevels(int levels);
  365. int mipLevels() const;
  366. int maximumMipLevels() const;
  367. void setLayers(int layers);
  368. int layers() const;
  369. int faces() const;
  370. void setSamples(int samples);
  371. int samples() const;
  372. void setFixedSamplePositions(bool fixed);
  373. bool isFixedSamplePositions() const;
  374. void allocateStorage();
  375. void allocateStorage(PixelFormat pixelFormat, PixelType pixelType);
  376. bool isStorageAllocated() const;
  377. QOpenGLTexture *createTextureView(Target target,
  378. TextureFormat viewFormat,
  379. int minimumMipmapLevel, int maximumMipmapLevel,
  380. int minimumLayer, int maximumLayer) const;
  381. bool isTextureView() const;
  382. // Pixel transfer
  383. // ### Qt 6: remove the non-const void * overloads
  384. #if QT_DEPRECATED_SINCE(5, 3)
  385. QT_DEPRECATED void setData(int mipLevel, int layer, CubeMapFace cubeFace,
  386. PixelFormat sourceFormat, PixelType sourceType,
  387. void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  388. QT_DEPRECATED void setData(int mipLevel, int layer,
  389. PixelFormat sourceFormat, PixelType sourceType,
  390. void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  391. QT_DEPRECATED void setData(int mipLevel,
  392. PixelFormat sourceFormat, PixelType sourceType,
  393. void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  394. QT_DEPRECATED void setData(PixelFormat sourceFormat, PixelType sourceType,
  395. void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  396. #endif // QT_DEPRECATED_SINCE(5, 3)
  397. void setData(int mipLevel, int layer, CubeMapFace cubeFace,
  398. PixelFormat sourceFormat, PixelType sourceType,
  399. const void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  400. void setData(int mipLevel, int layer,
  401. PixelFormat sourceFormat, PixelType sourceType,
  402. const void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  403. void setData(int mipLevel,
  404. PixelFormat sourceFormat, PixelType sourceType,
  405. const void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  406. void setData(PixelFormat sourceFormat, PixelType sourceType,
  407. const void *data, const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  408. // Compressed data upload
  409. // ### Qt 6: remove the non-const void * overloads
  410. #if QT_DEPRECATED_SINCE(5, 3)
  411. QT_DEPRECATED void setCompressedData(int mipLevel, int layer, CubeMapFace cubeFace,
  412. int dataSize, void *data,
  413. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  414. QT_DEPRECATED void setCompressedData(int mipLevel, int layer,
  415. int dataSize, void *data,
  416. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  417. QT_DEPRECATED void setCompressedData(int mipLevel, int dataSize, void *data,
  418. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  419. QT_DEPRECATED void setCompressedData(int dataSize, void *data,
  420. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  421. #endif // QT_DEPRECATED_SINCE(5, 3)
  422. void setCompressedData(int mipLevel, int layer, CubeMapFace cubeFace,
  423. int dataSize, const void *data,
  424. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  425. void setCompressedData(int mipLevel, int layer,
  426. int dataSize, const void *data,
  427. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  428. void setCompressedData(int mipLevel, int dataSize, const void *data,
  429. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  430. void setCompressedData(int dataSize, const void *data,
  431. const QOpenGLPixelTransferOptions * const options = Q_NULLPTR);
  432. // Helpful overloads for setData
  433. void setData(const QImage& image, MipMapGeneration genMipMaps = GenerateMipMaps);
  434. static bool hasFeature(Feature feature);
  435. // Texture Parameters
  436. void setMipBaseLevel(int baseLevel);
  437. int mipBaseLevel() const;
  438. void setMipMaxLevel(int maxLevel);
  439. int mipMaxLevel() const;
  440. void setMipLevelRange(int baseLevel, int maxLevel);
  441. QPair<int, int> mipLevelRange() const;
  442. void setAutoMipMapGenerationEnabled(bool enabled);
  443. bool isAutoMipMapGenerationEnabled() const;
  444. void generateMipMaps();
  445. void generateMipMaps(int baseLevel, bool resetBaseLevel = true);
  446. void setSwizzleMask(SwizzleComponent component, SwizzleValue value);
  447. void setSwizzleMask(SwizzleValue r, SwizzleValue g,
  448. SwizzleValue b, SwizzleValue a);
  449. SwizzleValue swizzleMask(SwizzleComponent component) const;
  450. enum DepthStencilMode {
  451. DepthMode = 0x1902, // GL_DEPTH_COMPONENT
  452. StencilMode = 0x1901 // GL_STENCIL_INDEX
  453. };
  454. Q_ENUM(DepthStencilMode)
  455. void setDepthStencilMode(DepthStencilMode mode);
  456. DepthStencilMode depthStencilMode() const;
  457. enum ComparisonFunction {
  458. CompareLessEqual = 0x0203, // GL_LEQUAL
  459. CompareGreaterEqual = 0x0206, // GL_GEQUAL
  460. CompareLess = 0x0201, // GL_LESS
  461. CompareGreater = 0x0204, // GL_GREATER
  462. CompareEqual = 0x0202, // GL_EQUAL
  463. CommpareNotEqual = 0x0205, // GL_NOTEQUAL
  464. CompareAlways = 0x0207, // GL_ALWAYS
  465. CompareNever = 0x0200 // GL_NEVER
  466. };
  467. Q_ENUM(ComparisonFunction)
  468. void setComparisonFunction(ComparisonFunction function);
  469. ComparisonFunction comparisonFunction() const;
  470. enum ComparisonMode {
  471. CompareRefToTexture = 0x884E, // GL_COMPARE_REF_TO_TEXTURE
  472. CompareNone = 0x0000 // GL_NONE
  473. };
  474. void setComparisonMode(ComparisonMode mode);
  475. ComparisonMode comparisonMode() const;
  476. // Sampling Parameters
  477. enum Filter {
  478. Nearest = 0x2600, // GL_NEAREST
  479. Linear = 0x2601, // GL_LINEAR
  480. NearestMipMapNearest = 0x2700, // GL_NEAREST_MIPMAP_NEAREST
  481. NearestMipMapLinear = 0x2702, // GL_NEAREST_MIPMAP_LINEAR
  482. LinearMipMapNearest = 0x2701, // GL_LINEAR_MIPMAP_NEAREST
  483. LinearMipMapLinear = 0x2703 // GL_LINEAR_MIPMAP_LINEAR
  484. };
  485. Q_ENUM(Filter)
  486. void setMinificationFilter(Filter filter);
  487. Filter minificationFilter() const;
  488. void setMagnificationFilter(Filter filter);
  489. Filter magnificationFilter() const;
  490. void setMinMagFilters(Filter minificationFilter,
  491. Filter magnificationFilter);
  492. QPair<Filter, Filter> minMagFilters() const;
  493. void setMaximumAnisotropy(float anisotropy);
  494. float maximumAnisotropy() const;
  495. void setWrapMode(WrapMode mode);
  496. void setWrapMode(CoordinateDirection direction, WrapMode mode);
  497. WrapMode wrapMode(CoordinateDirection direction) const;
  498. void setBorderColor(QColor color);
  499. void setBorderColor(float r, float g, float b, float a);
  500. void setBorderColor(int r, int g, int b, int a);
  501. void setBorderColor(uint r, uint g, uint b, uint a);
  502. QColor borderColor() const;
  503. void borderColor(float *border) const;
  504. void borderColor(int *border) const;
  505. void borderColor(unsigned int *border) const;
  506. void setMinimumLevelOfDetail(float value);
  507. float minimumLevelOfDetail() const;
  508. void setMaximumLevelOfDetail(float value);
  509. float maximumLevelOfDetail() const;
  510. void setLevelOfDetailRange(float min, float max);
  511. QPair<float, float> levelOfDetailRange() const;
  512. void setLevelofDetailBias(float bias);
  513. float levelofDetailBias() const;
  514. private:
  515. Q_DISABLE_COPY(QOpenGLTexture)
  516. Q_DECLARE_PRIVATE(QOpenGLTexture)
  517. QScopedPointer<QOpenGLTexturePrivate> d_ptr;
  518. };
  519. Q_DECLARE_OPERATORS_FOR_FLAGS(QOpenGLTexture::Features)
  520. QT_END_NAMESPACE
  521. #endif // QT_NO_OPENGL
  522. #endif // QOPENGLABSTRACTTEXTURE_H