From 12e530a31770f3b713a3aa66d29c152ddb97cf2e Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Sun, 7 Sep 2014 18:31:45 -0700 Subject: [PATCH] Updated docs. --- include/bgfx.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/bgfx.h b/include/bgfx.h index c3f5cbb3..df811b60 100644 --- a/include/bgfx.h +++ b/include/bgfx.h @@ -815,7 +815,13 @@ namespace bgfx /// FrameBufferHandle createFrameBuffer(uint8_t _num, TextureHandle* _handles, bool _destroyTextures = false); - /// Create frame buffer. + /// Create frame buffer for multiple window rendering. + /// + /// @param _nwh OS' target native window handle. + /// @param _width Window back buffer width. + /// @param _height Window back buffer height. + /// @param _depthFormat Window back buffer depth format. + /// FrameBufferHandle createFrameBuffer(void* _nwh, uint16_t _width, uint16_t _height, TextureFormat::Enum _depthFormat = TextureFormat::UnknownDepth); /// Destroy frame buffer.