mirror of https://github.com/bkaradzic/bgfx
Updated docs.
This commit is contained in:
parent
8d26c0f904
commit
14f9b41f58
|
@ -556,6 +556,13 @@ namespace bgfx
|
||||||
|
|
||||||
/// Called when a video capture begins.
|
/// Called when a video capture begins.
|
||||||
///
|
///
|
||||||
|
/// @param[in] _width Image width.
|
||||||
|
/// @param[in] _height Image height.
|
||||||
|
/// @param[in] _pitch Number of bytes to skip between the start of
|
||||||
|
/// each horizontal line of the image.
|
||||||
|
/// @param[in] _format Texture format. See: `TextureFormat::Enum`.
|
||||||
|
/// @param[in] _yflip If true, image origin is bottom left.
|
||||||
|
///
|
||||||
/// @attention C99 equivalent is `bgfx_callback_vtbl.capture_begin`.
|
/// @attention C99 equivalent is `bgfx_callback_vtbl.capture_begin`.
|
||||||
///
|
///
|
||||||
virtual void captureBegin(
|
virtual void captureBegin(
|
||||||
|
@ -568,6 +575,9 @@ namespace bgfx
|
||||||
|
|
||||||
/// Called when a video capture ends.
|
/// Called when a video capture ends.
|
||||||
///
|
///
|
||||||
|
/// @param[in] _data Image data.
|
||||||
|
/// @param[in] _size Image size.
|
||||||
|
///
|
||||||
/// @attention C99 equivalent is `bgfx_callback_vtbl.capture_end`.
|
/// @attention C99 equivalent is `bgfx_callback_vtbl.capture_end`.
|
||||||
///
|
///
|
||||||
virtual void captureEnd() = 0;
|
virtual void captureEnd() = 0;
|
||||||
|
|
Loading…
Reference in New Issue