@@ -88,9 +88,9 @@ DILIGENT_BEGIN_INTERFACE(IRenderDeviceGL, IRenderDevice)
8888 /// \param [in] GLHandle - OpenGL texture handle.
8989 /// \param [in] GLBindTarget - OpenGL bind target. If this parameter is null, the engine will
9090 /// automatically select the target based on texture
91- /// type (e.g. RESOURCE_DIM_TEX_2D will map to GL_TEXTURE_2D).
91+ /// type (e.g. Diligent:: RESOURCE_DIM_TEX_2D will map to ` GL_TEXTURE_2D` ).
9292 /// An application should typically use this parameter when the texture
93- /// has non-standard bind target such as, GL_TEXTURE_EXTERNAL_OES.
93+ /// has non-standard bind target such as, ` GL_TEXTURE_EXTERNAL_OES` .
9494 /// \param [in] TexDesc - Texture description. The engine can automatically
9595 /// set texture width, height, depth, mip levels count, and format.
9696 /// Remaining fields should be set up by the app.
@@ -99,6 +99,7 @@ DILIGENT_BEGIN_INTERFACE(IRenderDeviceGL, IRenderDevice)
9999 /// texture interface will be stored.
100100 /// The function calls AddRef(), so that the new object will contain
101101 /// one reference.
102+ ///
102103 /// \note Diligent engine texture object does not take ownership of the GL resource,
103104 /// and the application must not destroy it while it is in use by the engine.
104105 VIRTUAL void METHOD (CreateTextureFromGLHandle )(THIS_
@@ -119,6 +120,7 @@ DILIGENT_BEGIN_INTERFACE(IRenderDeviceGL, IRenderDevice)
119120 /// texture interface will be stored.
120121 /// The function calls AddRef(), so that the new object will contain
121122 /// one reference.
123+ ///
122124 /// \note Diligent engine buffer object does not take ownership of the GL resource,
123125 /// and the application must not destroy it while it is in use by the engine.
124126 VIRTUAL void METHOD (CreateBufferFromGLHandle )(THIS_
@@ -140,6 +142,7 @@ DILIGENT_BEGIN_INTERFACE(IRenderDeviceGL, IRenderDevice)
140142 /// texture interface will be stored.
141143 /// The function calls AddRef(), so that the new object will contain
142144 /// one reference.
145+ ///
143146 /// \note Only RESOURCE_DIM_TEX_2D dummy textures are supported.
144147 VIRTUAL void METHOD (CreateDummyTexture )(THIS_
145148 const TextureDesc REF TexDesc ,
0 commit comments