From f8abb4db0b5afbec7e65b7902970244577bd2af6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 4 Aug 2016 08:36:10 -0700 Subject: [PATCH] Updated docs. --- bgfx.html | 220 +++++++++++++++++++++++++++++++++++++++++++++++-- genindex.html | 120 ++++++++++++++++++++++++++- objects.inv | Bin 12132 -> 13125 bytes searchindex.js | 2 +- 4 files changed, 332 insertions(+), 10 deletions(-) diff --git a/bgfx.html b/bgfx.html index 06e41274b..855fa6cb4 100644 --- a/bgfx.html +++ b/bgfx.html @@ -1528,23 +1528,185 @@ creating windows.

+
+
+struct bgfx::TopologyConvert
+

Topology conversion function.

+

+
Attention
+
C99 equivalent is bgfx_topology_convert_t.
+
+

+
+

Public Types

+
+
+enum Enum
+

Topology conversion functions:

+

Values:

+
+
+TriListFlipWinding
+

Flip winding order of triangle list.

+
+ +
+
+TriListToLineList
+

Convert triangle list to line list.

+
+ +
+
+TriStripToTriList
+

Convert triangle strip to triangle list.

+
+ +
+
+LineStripToLineList
+

Convert line strip to line list.

+
+ +
+
+Count
+
+ +
+ +
+
+
-uint32_t bgfx::topologyConvert(TopologyConvert::Enum _conversion, void *_dst, uint32_t _dstSize, const void *_indices, uint32_t _numIndices, bool _index32)
+uint32_t bgfx::topologyConvert(TopologyConvert::Enum _conversion, void *_dst, uint32_t _dstSize, const void *_indices, uint32_t _numIndices, bool _index32)

Convert index buffer for use with different primitive topologies.

-
Return
-
Number of output indices after conversion.
-
Attention
-
C99 equivalent is bgfx_topology_convert.
Parameters
    -
  • _conversion -

    Conversion type, see TopologyConvert::Enum.

    +
  • _conversion -

    Conversion type, see TopologyConvert::Enum.

  • _dst -

    Destination index buffer. If this argument it NULL function will return number of indices after conversion.

  • _dstSize -

    Destination index buffer in bytes. It must be large enough to contain output indices. If destination size is insufficient index buffer will be truncated.

  • +
  • -
  • +
+
+
+

+
+ +
+
+struct bgfx::TopologySort
+

Topology sort order.

+

+
Attention
+
C99 equivalent is bgfx_topology_sort_t.
+
+

+
+

Public Types

+
+
+enum Enum
+

Topology sort order:

+

Values:

+
+
+DirectionFrontToBackMin
+
+ +
+
+DirectionFrontToBackAvg
+
+ +
+
+DirectionFrontToBackMax
+
+ +
+
+DirectionBackToFrontMin
+
+ +
+
+DirectionBackToFrontAvg
+
+ +
+
+DirectionBackToFrontMax
+
+ +
+
+DistanceFrontToBackMin
+
+ +
+
+DistanceFrontToBackAvg
+
+ +
+
+DistanceFrontToBackMax
+
+ +
+
+DistanceBackToFrontMin
+
+ +
+
+DistanceBackToFrontAvg
+
+ +
+
+DistanceBackToFrontMax
+
+ +
+
+Count
+
+ +
+ +
+
+ +
+
+void bgfx::topologySortTriList(TopologySort::Enum _sort, void *_dst, uint32_t _dstSize, const float _dir[3], const float _pos[3], const void *_vertices, uint32_t _stride, const void *_indices, uint32_t _numIndices, bool _index32)
+

Sort indices.

+

+
Attention
+
C99 equivalent is bgfx_topology_sort_tri_list.
+
Parameters
+
    +
  • _sort -

    Sort order, see TopologySort::Enum.

    +
  • +
  • _dst -

    Destination index buffer.

    +
  • +
  • _dstSize -

    Destination index buffer in bytes. It must be large enough to contain output indices. If destination size is insufficient index buffer will be truncated.

    +
  • +
  • _dir -

    Direction (vector must be normalized).

    +
  • +
  • _pos -

    Position.

    +
  • +
  • _vertices -

    Pointer to first vertex represented as float x, y, z. Must contain at least number of vertices referencende by index buffer.

    +
  • +
  • _stride -

    Vertex stride.

    +
  • _indices -

    Source indices.

  • _numIndices -

    Number of input indices.

    @@ -4818,9 +4980,53 @@ otherwise prefer bgfx::setViewScissor.

+
+
+struct bgfx::OcclusionQueryResult
+

Occlusion query result.

+

+
Attention
+
C99 equivalent is bgfx_occlusion_query_result_t.
+
+

+
+

Public Types

+
+
+enum Enum
+

Occlusion query results:

+

Values:

+
+
+Invisible
+

Query failed test.

+
+ +
+
+Visible
+

Query passed test.

+
+ +
+
+NoResult
+

Query result is not available yet.

+
+ +
+
+Count
+
+ +
+ +
+
+
-OcclusionQueryResult::Enum bgfx::getResult(OcclusionQueryHandle _handle)
+OcclusionQueryResult::Enum bgfx::getResult(OcclusionQueryHandle _handle)

Retrieve occlusion query result from previous frame.

Return
diff --git a/genindex.html b/genindex.html index a080c363f..824eb6e5f 100644 --- a/genindex.html +++ b/genindex.html @@ -580,6 +580,30 @@ +
bgfx::OcclusionQueryResult (C++ class) +
+ + +
bgfx::OcclusionQueryResult::Count (C++ class) +
+ + +
bgfx::OcclusionQueryResult::Enum (C++ type) +
+ + +
bgfx::OcclusionQueryResult::Invisible (C++ class) +
+ + +
bgfx::OcclusionQueryResult::NoResult (C++ class) +
+ + +
bgfx::OcclusionQueryResult::Visible (C++ class) +
+ +
bgfx::overrideInternal (C++ function), [1]
@@ -795,8 +819,6 @@
bgfx::Stats::gpuTimerFreq (C++ member)
-
-
bgfx::Stats::waitRender (C++ member)
@@ -833,6 +855,8 @@
bgfx::TextureFormat::BC4 (C++ class)
+
+
bgfx::TextureFormat::BC5 (C++ class)
@@ -1126,10 +1150,102 @@ +
bgfx::TopologyConvert (C++ class) +
+ +
bgfx::topologyConvert (C++ function)
+
bgfx::TopologyConvert::Count (C++ class) +
+ + +
bgfx::TopologyConvert::Enum (C++ type) +
+ + +
bgfx::TopologyConvert::LineStripToLineList (C++ class) +
+ + +
bgfx::TopologyConvert::TriListFlipWinding (C++ class) +
+ + +
bgfx::TopologyConvert::TriListToLineList (C++ class) +
+ + +
bgfx::TopologyConvert::TriStripToTriList (C++ class) +
+ + +
bgfx::TopologySort (C++ class) +
+ + +
bgfx::TopologySort::Count (C++ class) +
+ + +
bgfx::TopologySort::DirectionBackToFrontAvg (C++ class) +
+ + +
bgfx::TopologySort::DirectionBackToFrontMax (C++ class) +
+ + +
bgfx::TopologySort::DirectionBackToFrontMin (C++ class) +
+ + +
bgfx::TopologySort::DirectionFrontToBackAvg (C++ class) +
+ + +
bgfx::TopologySort::DirectionFrontToBackMax (C++ class) +
+ + +
bgfx::TopologySort::DirectionFrontToBackMin (C++ class) +
+ + +
bgfx::TopologySort::DistanceBackToFrontAvg (C++ class) +
+ + +
bgfx::TopologySort::DistanceBackToFrontMax (C++ class) +
+ + +
bgfx::TopologySort::DistanceBackToFrontMin (C++ class) +
+ + +
bgfx::TopologySort::DistanceFrontToBackAvg (C++ class) +
+ + +
bgfx::TopologySort::DistanceFrontToBackMax (C++ class) +
+ + +
bgfx::TopologySort::DistanceFrontToBackMin (C++ class) +
+ + +
bgfx::TopologySort::Enum (C++ type) +
+ + +
bgfx::topologySortTriList (C++ function) +
+ +
bgfx::touch (C++ function)
diff --git a/objects.inv b/objects.inv index 74bd18ad29b282213d3cf7fafa6e658c1c4814f2..c353d7f8767c049ad8f66b57fede1be4f902dcaf 100644 GIT binary patch delta 11153 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 Ax&QzG diff --git a/searchindex.js b/searchindex.js index 7c5174c0a..df178d806 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:46,filenames:["bgfx","build","examples","index","license","overview","tools"],objects:{"":{"bgfx::Attrib":[0,1,1,"_CPPv2N4bgfx6AttribE"],"bgfx::Attrib::Bitangent":[0,1,1,"_CPPv2N4bgfx6Attrib9BitangentE"],"bgfx::Attrib::Color0":[0,1,1,"_CPPv2N4bgfx6Attrib6Color0E"],"bgfx::Attrib::Color1":[0,1,1,"_CPPv2N4bgfx6Attrib6Color1E"],"bgfx::Attrib::Count":[0,1,1,"_CPPv2N4bgfx6Attrib5CountE"],"bgfx::Attrib::Enum":[0,2,1,"_CPPv2N4bgfx6Attrib4EnumE"],"bgfx::Attrib::Indices":[0,1,1,"_CPPv2N4bgfx6Attrib7IndicesE"],"bgfx::Attrib::Normal":[0,1,1,"_CPPv2N4bgfx6Attrib6NormalE"],"bgfx::Attrib::Position":[0,1,1,"_CPPv2N4bgfx6Attrib8PositionE"],"bgfx::Attrib::Tangent":[0,1,1,"_CPPv2N4bgfx6Attrib7TangentE"],"bgfx::Attrib::TexCoord0":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord0E"],"bgfx::Attrib::TexCoord1":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord1E"],"bgfx::Attrib::TexCoord2":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord2E"],"bgfx::Attrib::TexCoord3":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord3E"],"bgfx::Attrib::TexCoord4":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord4E"],"bgfx::Attrib::TexCoord5":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord5E"],"bgfx::Attrib::TexCoord6":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord6E"],"bgfx::Attrib::TexCoord7":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord7E"],"bgfx::Attrib::Weight":[0,1,1,"_CPPv2N4bgfx6Attrib6WeightE"],"bgfx::CallbackI":[0,1,1,"_CPPv2N4bgfx9CallbackIE"],"bgfx::CallbackI::cacheRead":[0,3,1,"_CPPv2N4bgfx9CallbackI9cacheReadE8uint64_tPv8uint32_t"],"bgfx::CallbackI::cacheReadSize":[0,3,1,"_CPPv2N4bgfx9CallbackI13cacheReadSizeE8uint64_t"],"bgfx::CallbackI::cacheWrite":[0,3,1,"_CPPv2N4bgfx9CallbackI10cacheWriteE8uint64_tPKv8uint32_t"],"bgfx::CallbackI::captureBegin":[0,3,1,"_CPPv2N4bgfx9CallbackI12captureBeginE8uint32_t8uint32_t8uint32_tN13TextureFormat4EnumEb"],"bgfx::CallbackI::captureEnd":[0,3,1,"_CPPv2N4bgfx9CallbackI10captureEndEv"],"bgfx::CallbackI::captureFrame":[0,3,1,"_CPPv2N4bgfx9CallbackI12captureFrameEPKv8uint32_t"],"bgfx::CallbackI::fatal":[0,3,1,"_CPPv2N4bgfx9CallbackI5fatalEN5Fatal4EnumEPKc"],"bgfx::CallbackI::screenShot":[0,3,1,"_CPPv2N4bgfx9CallbackI10screenShotEPKc8uint32_t8uint32_t8uint32_tPKv8uint32_tb"],"bgfx::CallbackI::traceVargs":[0,3,1,"_CPPv2N4bgfx9CallbackI10traceVargsEPKc8uint16_tPKc7va_list"],"bgfx::Caps":[0,1,1,"_CPPv2N4bgfx4CapsE"],"bgfx::Caps::GPU":[0,1,1,"_CPPv2N4bgfx4Caps3GPUE"],"bgfx::Caps::deviceId":[0,4,1,"_CPPv2N4bgfx4Caps8deviceIdE"],"bgfx::Caps::formats":[0,4,1,"_CPPv2N4bgfx4Caps7formatsE"],"bgfx::Caps::gpu":[0,4,1,"_CPPv2N4bgfx4Caps3gpuE"],"bgfx::Caps::homogeneousDepth":[0,4,1,"_CPPv2N4bgfx4Caps16homogeneousDepthE"],"bgfx::Caps::maxDrawCalls":[0,4,1,"_CPPv2N4bgfx4Caps12maxDrawCallsE"],"bgfx::Caps::maxFBAttachments":[0,4,1,"_CPPv2N4bgfx4Caps16maxFBAttachmentsE"],"bgfx::Caps::maxTextureSize":[0,4,1,"_CPPv2N4bgfx4Caps14maxTextureSizeE"],"bgfx::Caps::maxViews":[0,4,1,"_CPPv2N4bgfx4Caps8maxViewsE"],"bgfx::Caps::numGPUs":[0,4,1,"_CPPv2N4bgfx4Caps7numGPUsE"],"bgfx::Caps::originBottomLeft":[0,4,1,"_CPPv2N4bgfx4Caps16originBottomLeftE"],"bgfx::Caps::rendererType":[0,4,1,"_CPPv2N4bgfx4Caps12rendererTypeE"],"bgfx::Caps::supported":[0,4,1,"_CPPv2N4bgfx4Caps9supportedE"],"bgfx::Caps::vendorId":[0,4,1,"_CPPv2N4bgfx4Caps8vendorIdE"],"bgfx::HMD":[0,1,1,"_CPPv2N4bgfx3HMDE"],"bgfx::HMD::Eye":[0,1,1,"_CPPv2N4bgfx3HMD3EyeE"],"bgfx::HMD::Eye::fov":[0,4,1,"_CPPv2N4bgfx3HMD3Eye3fovE"],"bgfx::HMD::Eye::projection":[0,4,1,"_CPPv2N4bgfx3HMD3Eye10projectionE"],"bgfx::HMD::Eye::rotation":[0,4,1,"_CPPv2N4bgfx3HMD3Eye8rotationE"],"bgfx::HMD::Eye::translation":[0,4,1,"_CPPv2N4bgfx3HMD3Eye11translationE"],"bgfx::HMD::Eye::viewOffset":[0,4,1,"_CPPv2N4bgfx3HMD3Eye10viewOffsetE"],"bgfx::HMD::deviceHeight":[0,4,1,"_CPPv2N4bgfx3HMD12deviceHeightE"],"bgfx::HMD::deviceWidth":[0,4,1,"_CPPv2N4bgfx3HMD11deviceWidthE"],"bgfx::HMD::flags":[0,4,1,"_CPPv2N4bgfx3HMD5flagsE"],"bgfx::HMD::height":[0,4,1,"_CPPv2N4bgfx3HMD6heightE"],"bgfx::HMD::width":[0,4,1,"_CPPv2N4bgfx3HMD5widthE"],"bgfx::InternalData":[0,1,1,"_CPPv2N4bgfx12InternalDataE"],"bgfx::InternalData::caps":[0,4,1,"_CPPv2N4bgfx12InternalData4capsE"],"bgfx::InternalData::context":[0,4,1,"_CPPv2N4bgfx12InternalData7contextE"],"bgfx::Memory":[0,1,1,"_CPPv2N4bgfx6MemoryE"],"bgfx::PlatformData":[0,1,1,"_CPPv2N4bgfx12PlatformDataE"],"bgfx::PlatformData::backBuffer":[0,4,1,"_CPPv2N4bgfx12PlatformData10backBufferE"],"bgfx::PlatformData::backBufferDS":[0,4,1,"_CPPv2N4bgfx12PlatformData12backBufferDSE"],"bgfx::PlatformData::context":[0,4,1,"_CPPv2N4bgfx12PlatformData7contextE"],"bgfx::PlatformData::ndt":[0,4,1,"_CPPv2N4bgfx12PlatformData3ndtE"],"bgfx::PlatformData::nwh":[0,4,1,"_CPPv2N4bgfx12PlatformData3nwhE"],"bgfx::RenderFrame":[0,1,1,"_CPPv2N4bgfx11RenderFrameE"],"bgfx::RendererType":[0,1,1,"_CPPv2N4bgfx12RendererTypeE"],"bgfx::RendererType::Count":[0,1,1,"_CPPv2N4bgfx12RendererType5CountE"],"bgfx::RendererType::Direct3D11":[0,1,1,"_CPPv2N4bgfx12RendererType10Direct3D11E"],"bgfx::RendererType::Direct3D12":[0,1,1,"_CPPv2N4bgfx12RendererType10Direct3D12E"],"bgfx::RendererType::Direct3D9":[0,1,1,"_CPPv2N4bgfx12RendererType9Direct3D9E"],"bgfx::RendererType::Enum":[0,2,1,"_CPPv2N4bgfx12RendererType4EnumE"],"bgfx::RendererType::Metal":[0,1,1,"_CPPv2N4bgfx12RendererType5MetalE"],"bgfx::RendererType::Null":[0,1,1,"_CPPv2N4bgfx12RendererType4NullE"],"bgfx::RendererType::OpenGL":[0,1,1,"_CPPv2N4bgfx12RendererType6OpenGLE"],"bgfx::RendererType::OpenGLES":[0,1,1,"_CPPv2N4bgfx12RendererType8OpenGLESE"],"bgfx::RendererType::Vulkan":[0,1,1,"_CPPv2N4bgfx12RendererType6VulkanE"],"bgfx::Stats":[0,1,1,"_CPPv2N4bgfx5StatsE"],"bgfx::Stats::cpuTimeBegin":[0,4,1,"_CPPv2N4bgfx5Stats12cpuTimeBeginE"],"bgfx::Stats::cpuTimeEnd":[0,4,1,"_CPPv2N4bgfx5Stats10cpuTimeEndE"],"bgfx::Stats::cpuTimerFreq":[0,4,1,"_CPPv2N4bgfx5Stats12cpuTimerFreqE"],"bgfx::Stats::gpuTimeBegin":[0,4,1,"_CPPv2N4bgfx5Stats12gpuTimeBeginE"],"bgfx::Stats::gpuTimeEnd":[0,4,1,"_CPPv2N4bgfx5Stats10gpuTimeEndE"],"bgfx::Stats::gpuTimerFreq":[0,4,1,"_CPPv2N4bgfx5Stats12gpuTimerFreqE"],"bgfx::Stats::waitRender":[0,4,1,"_CPPv2N4bgfx5Stats10waitRenderE"],"bgfx::Stats::waitSubmit":[0,4,1,"_CPPv2N4bgfx5Stats10waitSubmitE"],"bgfx::TextureFormat":[0,1,1,"_CPPv2N4bgfx13TextureFormatE"],"bgfx::TextureFormat::A8":[0,1,1,"_CPPv2N4bgfx13TextureFormat2A8E"],"bgfx::TextureFormat::BC1":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC1E"],"bgfx::TextureFormat::BC2":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC2E"],"bgfx::TextureFormat::BC3":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC3E"],"bgfx::TextureFormat::BC4":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC4E"],"bgfx::TextureFormat::BC5":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC5E"],"bgfx::TextureFormat::BC6H":[0,1,1,"_CPPv2N4bgfx13TextureFormat4BC6HE"],"bgfx::TextureFormat::BC7":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC7E"],"bgfx::TextureFormat::BGRA8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5BGRA8E"],"bgfx::TextureFormat::Count":[0,1,1,"_CPPv2N4bgfx13TextureFormat5CountE"],"bgfx::TextureFormat::D0S8":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D0S8E"],"bgfx::TextureFormat::D16":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D16E"],"bgfx::TextureFormat::D16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D16FE"],"bgfx::TextureFormat::D24":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D24E"],"bgfx::TextureFormat::D24F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D24FE"],"bgfx::TextureFormat::D24S8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5D24S8E"],"bgfx::TextureFormat::D32":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D32E"],"bgfx::TextureFormat::D32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D32FE"],"bgfx::TextureFormat::ETC1":[0,1,1,"_CPPv2N4bgfx13TextureFormat4ETC1E"],"bgfx::TextureFormat::ETC2":[0,1,1,"_CPPv2N4bgfx13TextureFormat4ETC2E"],"bgfx::TextureFormat::ETC2A":[0,1,1,"_CPPv2N4bgfx13TextureFormat5ETC2AE"],"bgfx::TextureFormat::ETC2A1":[0,1,1,"_CPPv2N4bgfx13TextureFormat6ETC2A1E"],"bgfx::TextureFormat::Enum":[0,2,1,"_CPPv2N4bgfx13TextureFormat4EnumE"],"bgfx::TextureFormat::PTC12":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC12E"],"bgfx::TextureFormat::PTC12A":[0,1,1,"_CPPv2N4bgfx13TextureFormat6PTC12AE"],"bgfx::TextureFormat::PTC14":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC14E"],"bgfx::TextureFormat::PTC14A":[0,1,1,"_CPPv2N4bgfx13TextureFormat6PTC14AE"],"bgfx::TextureFormat::PTC22":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC22E"],"bgfx::TextureFormat::PTC24":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC24E"],"bgfx::TextureFormat::R1":[0,1,1,"_CPPv2N4bgfx13TextureFormat2R1E"],"bgfx::TextureFormat::R11G11B10F":[0,1,1,"_CPPv2N4bgfx13TextureFormat10R11G11B10FE"],"bgfx::TextureFormat::R16":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R16E"],"bgfx::TextureFormat::R16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16FE"],"bgfx::TextureFormat::R16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16IE"],"bgfx::TextureFormat::R16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16SE"],"bgfx::TextureFormat::R16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16UE"],"bgfx::TextureFormat::R32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32FE"],"bgfx::TextureFormat::R32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32IE"],"bgfx::TextureFormat::R32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32UE"],"bgfx::TextureFormat::R5G6B5":[0,1,1,"_CPPv2N4bgfx13TextureFormat6R5G6B5E"],"bgfx::TextureFormat::R8":[0,1,1,"_CPPv2N4bgfx13TextureFormat2R8E"],"bgfx::TextureFormat::R8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8IE"],"bgfx::TextureFormat::R8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8SE"],"bgfx::TextureFormat::R8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8UE"],"bgfx::TextureFormat::RG16":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG16E"],"bgfx::TextureFormat::RG16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16FE"],"bgfx::TextureFormat::RG16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16IE"],"bgfx::TextureFormat::RG16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16SE"],"bgfx::TextureFormat::RG16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16UE"],"bgfx::TextureFormat::RG32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32FE"],"bgfx::TextureFormat::RG32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32IE"],"bgfx::TextureFormat::RG32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32UE"],"bgfx::TextureFormat::RG8":[0,1,1,"_CPPv2N4bgfx13TextureFormat3RG8E"],"bgfx::TextureFormat::RG8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8IE"],"bgfx::TextureFormat::RG8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8SE"],"bgfx::TextureFormat::RG8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8UE"],"bgfx::TextureFormat::RGB10A2":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGB10A2E"],"bgfx::TextureFormat::RGB5A1":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGB5A1E"],"bgfx::TextureFormat::RGB8":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RGB8E"],"bgfx::TextureFormat::RGB8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8IE"],"bgfx::TextureFormat::RGB8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8SE"],"bgfx::TextureFormat::RGB8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8UE"],"bgfx::TextureFormat::RGB9E5F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGB9E5FE"],"bgfx::TextureFormat::RGBA16":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA16E"],"bgfx::TextureFormat::RGBA16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16FE"],"bgfx::TextureFormat::RGBA16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16IE"],"bgfx::TextureFormat::RGBA16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16SE"],"bgfx::TextureFormat::RGBA16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16UE"],"bgfx::TextureFormat::RGBA32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32FE"],"bgfx::TextureFormat::RGBA32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32IE"],"bgfx::TextureFormat::RGBA32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32UE"],"bgfx::TextureFormat::RGBA4":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGBA4E"],"bgfx::TextureFormat::RGBA8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGBA8E"],"bgfx::TextureFormat::RGBA8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8IE"],"bgfx::TextureFormat::RGBA8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8SE"],"bgfx::TextureFormat::RGBA8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8UE"],"bgfx::TextureFormat::Unknown":[0,1,1,"_CPPv2N4bgfx13TextureFormat7UnknownE"],"bgfx::TextureFormat::UnknownDepth":[0,1,1,"_CPPv2N4bgfx13TextureFormat12UnknownDepthE"],"bgfx::UniformType":[0,1,1,"_CPPv2N4bgfx11UniformTypeE"],"bgfx::UniformType::Count":[0,1,1,"_CPPv2N4bgfx11UniformType5CountE"],"bgfx::UniformType::End":[0,1,1,"_CPPv2N4bgfx11UniformType3EndE"],"bgfx::UniformType::Enum":[0,2,1,"_CPPv2N4bgfx11UniformType4EnumE"],"bgfx::UniformType::Int1":[0,1,1,"_CPPv2N4bgfx11UniformType4Int1E"],"bgfx::UniformType::Mat3":[0,1,1,"_CPPv2N4bgfx11UniformType4Mat3E"],"bgfx::UniformType::Mat4":[0,1,1,"_CPPv2N4bgfx11UniformType4Mat4E"],"bgfx::UniformType::Vec4":[0,1,1,"_CPPv2N4bgfx11UniformType4Vec4E"],"bgfx::VertexDecl":[0,1,1,"_CPPv2N4bgfx10VertexDeclE"],"bgfx::VertexDecl::add":[0,3,1,"_CPPv2N4bgfx10VertexDecl3addEN6Attrib4EnumE7uint8_tN10AttribType4EnumEbb"],"bgfx::VertexDecl::begin":[0,3,1,"_CPPv2N4bgfx10VertexDecl5beginEN12RendererType4EnumE"],"bgfx::VertexDecl::decode":[0,3,1,"_CPPv2N4bgfx10VertexDecl6decodeEN6Attrib4EnumER7uint8_tRN10AttribType4EnumERbRb"],"bgfx::VertexDecl::end":[0,3,1,"_CPPv2N4bgfx10VertexDecl3endEv"],"bgfx::VertexDecl::getOffset":[0,3,1,"_CPPv2N4bgfx10VertexDecl9getOffsetEN6Attrib4EnumE"],"bgfx::VertexDecl::getSize":[0,3,1,"_CPPv2N4bgfx10VertexDecl7getSizeE8uint32_t"],"bgfx::VertexDecl::getStride":[0,3,1,"_CPPv2N4bgfx10VertexDecl9getStrideEv"],"bgfx::VertexDecl::has":[0,3,1,"_CPPv2N4bgfx10VertexDecl3hasEN6Attrib4EnumE"],"bgfx::VertexDecl::skip":[0,3,1,"_CPPv2N4bgfx10VertexDecl4skipE7uint8_t"],"bgfx::alloc":[0,3,1,"_CPPv2N4bgfx5allocE8uint32_t"],"bgfx::allocInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx23allocInstanceDataBufferE8uint32_t8uint16_t"],"bgfx::allocTransform":[0,3,1,"_CPPv2N4bgfx14allocTransformEP9Transform8uint16_t"],"bgfx::allocTransientIndexBuffer":[0,3,1,"_CPPv2N4bgfx25allocTransientIndexBufferEP20TransientIndexBuffer8uint32_t"],"bgfx::allocTransientVertexBuffer":[0,3,1,"_CPPv2N4bgfx26allocTransientVertexBufferEP21TransientVertexBuffer8uint32_tRK10VertexDecl"],"bgfx::blit":[0,3,1,"_CPPv2N4bgfx4blitE7uint8_t13TextureHandle8uint16_t8uint16_t13TextureHandle8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::calcTextureSize":[0,3,1,"_CPPv2N4bgfx15calcTextureSizeER11TextureInfo8uint16_t8uint16_t8uint16_tb7uint8_tN13TextureFormat4EnumE"],"bgfx::checkAvailInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx28checkAvailInstanceDataBufferE8uint32_t8uint16_t"],"bgfx::checkAvailTransientIndexBuffer":[0,3,1,"_CPPv2N4bgfx30checkAvailTransientIndexBufferE8uint32_t"],"bgfx::checkAvailTransientVertexBuffer":[0,3,1,"_CPPv2N4bgfx31checkAvailTransientVertexBufferE8uint32_tRK10VertexDecl"],"bgfx::copy":[0,3,1,"_CPPv2N4bgfx4copyEPKv8uint32_t"],"bgfx::createDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx24createDynamicIndexBufferE8uint32_t8uint16_t"],"bgfx::createDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx25createDynamicVertexBufferE8uint32_tRK10VertexDecl8uint16_t"],"bgfx::createFrameBuffer":[0,3,1,"_CPPv2N4bgfx17createFrameBufferE8uint16_t8uint16_tN13TextureFormat4EnumE8uint32_t"],"bgfx::createIndexBuffer":[0,3,1,"_CPPv2N4bgfx17createIndexBufferEPK6Memory8uint16_t"],"bgfx::createIndirectBuffer":[0,3,1,"_CPPv2N4bgfx20createIndirectBufferE8uint32_t"],"bgfx::createOcclusionQuery":[0,3,1,"_CPPv2N4bgfx20createOcclusionQueryEv"],"bgfx::createProgram":[0,3,1,"_CPPv2N4bgfx13createProgramE12ShaderHandle12ShaderHandleb"],"bgfx::createShader":[0,3,1,"_CPPv2N4bgfx12createShaderEPK6Memory"],"bgfx::createTexture":[0,3,1,"_CPPv2N4bgfx13createTextureEPK6Memory8uint32_t7uint8_tP11TextureInfo"],"bgfx::createTexture2D":[0,3,1,"_CPPv2N4bgfx15createTexture2DE8uint16_t8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createTexture3D":[0,3,1,"_CPPv2N4bgfx15createTexture3DE8uint16_t8uint16_t8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createTextureCube":[0,3,1,"_CPPv2N4bgfx17createTextureCubeE8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createUniform":[0,3,1,"_CPPv2N4bgfx13createUniformEPKcN11UniformType4EnumE8uint16_t"],"bgfx::createVertexBuffer":[0,3,1,"_CPPv2N4bgfx18createVertexBufferEPK6MemoryRK10VertexDecl8uint16_t"],"bgfx::dbgTextClear":[0,3,1,"_CPPv2N4bgfx12dbgTextClearE7uint8_tb"],"bgfx::dbgTextPrintf":[0,3,1,"_CPPv2N4bgfx13dbgTextPrintfE8uint16_t8uint16_t7uint8_tPKcz"],"bgfx::destroyDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx25destroyDynamicIndexBufferE24DynamicIndexBufferHandle"],"bgfx::destroyDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx26destroyDynamicVertexBufferE25DynamicVertexBufferHandle"],"bgfx::destroyFrameBuffer":[0,3,1,"_CPPv2N4bgfx18destroyFrameBufferE17FrameBufferHandle"],"bgfx::destroyIndexBuffer":[0,3,1,"_CPPv2N4bgfx18destroyIndexBufferE17IndexBufferHandle"],"bgfx::destroyIndirectBuffer":[0,3,1,"_CPPv2N4bgfx21destroyIndirectBufferE20IndirectBufferHandle"],"bgfx::destroyOcclusionQuery":[0,3,1,"_CPPv2N4bgfx21destroyOcclusionQueryE20OcclusionQueryHandle"],"bgfx::destroyProgram":[0,3,1,"_CPPv2N4bgfx14destroyProgramE13ProgramHandle"],"bgfx::destroyShader":[0,3,1,"_CPPv2N4bgfx13destroyShaderE12ShaderHandle"],"bgfx::destroyTexture":[0,3,1,"_CPPv2N4bgfx14destroyTextureE13TextureHandle"],"bgfx::destroyUniform":[0,3,1,"_CPPv2N4bgfx14destroyUniformE13UniformHandle"],"bgfx::destroyVertexBuffer":[0,3,1,"_CPPv2N4bgfx19destroyVertexBufferE18VertexBufferHandle"],"bgfx::discard":[0,3,1,"_CPPv2N4bgfx7discardEv"],"bgfx::dispatch":[0,3,1,"_CPPv2N4bgfx8dispatchE7uint8_t13ProgramHandle8uint16_t8uint16_t8uint16_t7uint8_t"],"bgfx::frame":[0,3,1,"_CPPv2N4bgfx5frameEb"],"bgfx::getCaps":[0,3,1,"_CPPv2N4bgfx7getCapsEv"],"bgfx::getHMD":[0,3,1,"_CPPv2N4bgfx6getHMDEv"],"bgfx::getInternalData":[0,3,1,"_CPPv2N4bgfx15getInternalDataEv"],"bgfx::getRendererType":[0,3,1,"_CPPv2N4bgfx15getRendererTypeEv"],"bgfx::getResult":[0,3,1,"_CPPv2N4bgfx9getResultE20OcclusionQueryHandle"],"bgfx::getShaderUniforms":[0,3,1,"_CPPv2N4bgfx17getShaderUniformsE12ShaderHandleP13UniformHandle8uint16_t"],"bgfx::getStats":[0,3,1,"_CPPv2N4bgfx8getStatsEv"],"bgfx::init":[0,3,1,"_CPPv2N4bgfx4initEN12RendererType4EnumE8uint16_t8uint16_tP9CallbackIPN2bx10AllocatorIE"],"bgfx::makeRef":[0,3,1,"_CPPv2N4bgfx7makeRefEPKv8uint32_t9ReleaseFnPv"],"bgfx::overrideInternal":[0,3,1,"_CPPv2N4bgfx16overrideInternalE13TextureHandle9uintptr_t"],"bgfx::readTexture":[0,3,1,"_CPPv2N4bgfx11readTextureE13TextureHandlePv"],"bgfx::renderFrame":[0,3,1,"_CPPv2N4bgfx11renderFrameEv"],"bgfx::reset":[0,3,1,"_CPPv2N4bgfx5resetE8uint32_t8uint32_t8uint32_t"],"bgfx::saveScreenShot":[0,3,1,"_CPPv2N4bgfx14saveScreenShotEPKc"],"bgfx::setBuffer":[0,3,1,"_CPPv2N4bgfx9setBufferE7uint8_t17IndexBufferHandleN6Access4EnumE"],"bgfx::setCondition":[0,3,1,"_CPPv2N4bgfx12setConditionE20OcclusionQueryHandleb"],"bgfx::setDebug":[0,3,1,"_CPPv2N4bgfx8setDebugE8uint32_t"],"bgfx::setImage":[0,3,1,"_CPPv2N4bgfx8setImageE7uint8_t13UniformHandle13TextureHandle7uint8_tN6Access4EnumEN13TextureFormat4EnumE"],"bgfx::setIndexBuffer":[0,3,1,"_CPPv2N4bgfx14setIndexBufferE17IndexBufferHandle"],"bgfx::setInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx21setInstanceDataBufferEPK18InstanceDataBuffer8uint32_t"],"bgfx::setMarker":[0,3,1,"_CPPv2N4bgfx9setMarkerEPKc"],"bgfx::setPaletteColor":[0,3,1,"_CPPv2N4bgfx15setPaletteColorE7uint8_t8uint32_t"],"bgfx::setPlatformData":[0,3,1,"_CPPv2N4bgfx15setPlatformDataERK12PlatformData"],"bgfx::setScissor":[0,3,1,"_CPPv2N4bgfx10setScissorE8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setState":[0,3,1,"_CPPv2N4bgfx8setStateE8uint64_t8uint32_t"],"bgfx::setStencil":[0,3,1,"_CPPv2N4bgfx10setStencilE8uint32_t8uint32_t"],"bgfx::setTexture":[0,3,1,"_CPPv2N4bgfx10setTextureE7uint8_t13UniformHandle13TextureHandle8uint32_t"],"bgfx::setTransform":[0,3,1,"_CPPv2N4bgfx12setTransformEPKv8uint16_t"],"bgfx::setVertexBuffer":[0,3,1,"_CPPv2N4bgfx15setVertexBufferE18VertexBufferHandle"],"bgfx::setViewClear":[0,3,1,"_CPPv2N4bgfx12setViewClearE7uint8_t8uint16_t8uint32_tf7uint8_t"],"bgfx::setViewFrameBuffer":[0,3,1,"_CPPv2N4bgfx18setViewFrameBufferE7uint8_t17FrameBufferHandle"],"bgfx::setViewName":[0,3,1,"_CPPv2N4bgfx11setViewNameE7uint8_tPKc"],"bgfx::setViewRect":[0,3,1,"_CPPv2N4bgfx11setViewRectE7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setViewRemap":[0,3,1,"_CPPv2N4bgfx12setViewRemapE7uint8_t7uint8_tPKv"],"bgfx::setViewScissor":[0,3,1,"_CPPv2N4bgfx14setViewScissorE7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setViewSeq":[0,3,1,"_CPPv2N4bgfx10setViewSeqE7uint8_tb"],"bgfx::setViewTransform":[0,3,1,"_CPPv2N4bgfx16setViewTransformE7uint8_tPKvPKv7uint8_tPKv"],"bgfx::shutdown":[0,3,1,"_CPPv2N4bgfx8shutdownEv"],"bgfx::submit":[0,3,1,"_CPPv2N4bgfx6submitE7uint8_t13ProgramHandle7int32_tb"],"bgfx::topologyConvert":[0,3,1,"_CPPv2N4bgfx15topologyConvertEN15TopologyConvert4EnumEPv8uint32_tPKv8uint32_tb"],"bgfx::touch":[0,3,1,"_CPPv2N4bgfx5touchE7uint8_t"],"bgfx::updateDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx24updateDynamicIndexBufferE24DynamicIndexBufferHandle8uint32_tPK6Memory"],"bgfx::updateDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx25updateDynamicVertexBufferE25DynamicVertexBufferHandle8uint32_tPK6Memory"],"bgfx::updateTexture2D":[0,3,1,"_CPPv2N4bgfx15updateTexture2DE13TextureHandle7uint8_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory8uint16_t"],"bgfx::updateTexture3D":[0,3,1,"_CPPv2N4bgfx15updateTexture3DE13TextureHandle7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory"],"bgfx::updateTextureCube":[0,3,1,"_CPPv2N4bgfx17updateTextureCubeE13TextureHandle7uint8_t7uint8_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory8uint16_t"],"bgfx::vertexConvert":[0,3,1,"_CPPv2N4bgfx13vertexConvertERK10VertexDeclPvRK10VertexDeclPKv8uint32_t"],"bgfx::vertexPack":[0,3,1,"_CPPv2N4bgfx10vertexPackEA4_KfbN6Attrib4EnumERK10VertexDeclPv8uint32_t"],"bgfx::vertexUnpack":[0,3,1,"_CPPv2N4bgfx12vertexUnpackEA4_fN6Attrib4EnumERK10VertexDeclPKv8uint32_t"],"bgfx::weldVertices":[0,3,1,"_CPPv2N4bgfx12weldVerticesEP8uint16_tRK10VertexDeclPKv8uint16_tf"],BGFX_CAPS_BLEND_INDEPENDENT:[0,0,1,"c.BGFX_CAPS_BLEND_INDEPENDENT"],BGFX_CAPS_COMPUTE:[0,0,1,"c.BGFX_CAPS_COMPUTE"],BGFX_CAPS_DRAW_INDIRECT:[0,0,1,"c.BGFX_CAPS_DRAW_INDIRECT"],BGFX_CAPS_FRAGMENT_DEPTH:[0,0,1,"c.BGFX_CAPS_FRAGMENT_DEPTH"],BGFX_CAPS_FRAGMENT_ORDERING:[0,0,1,"c.BGFX_CAPS_FRAGMENT_ORDERING"],BGFX_CAPS_HIDPI:[0,0,1,"c.BGFX_CAPS_HIDPI"],BGFX_CAPS_HMD:[0,0,1,"c.BGFX_CAPS_HMD"],BGFX_CAPS_INDEX32:[0,0,1,"c.BGFX_CAPS_INDEX32"],BGFX_CAPS_INSTANCING:[0,0,1,"c.BGFX_CAPS_INSTANCING"],BGFX_CAPS_OCCLUSION_QUERY:[0,0,1,"c.BGFX_CAPS_OCCLUSION_QUERY"],BGFX_CAPS_RENDERER_MULTITHREADED:[0,0,1,"c.BGFX_CAPS_RENDERER_MULTITHREADED"],BGFX_CAPS_SWAP_CHAIN:[0,0,1,"c.BGFX_CAPS_SWAP_CHAIN"],BGFX_CAPS_TEXTURE_3D:[0,0,1,"c.BGFX_CAPS_TEXTURE_3D"],BGFX_CAPS_TEXTURE_BLIT:[0,0,1,"c.BGFX_CAPS_TEXTURE_BLIT"],BGFX_CAPS_TEXTURE_COMPARE_ALL:[0,0,1,"c.BGFX_CAPS_TEXTURE_COMPARE_ALL"],BGFX_CAPS_TEXTURE_COMPARE_LEQUAL:[0,0,1,"c.BGFX_CAPS_TEXTURE_COMPARE_LEQUAL"],BGFX_CAPS_TEXTURE_READ_BACK:[0,0,1,"c.BGFX_CAPS_TEXTURE_READ_BACK"],BGFX_CAPS_VERTEX_ATTRIB_HALF:[0,0,1,"c.BGFX_CAPS_VERTEX_ATTRIB_HALF"],BGFX_DEBUG_IFH:[0,0,1,"c.BGFX_DEBUG_IFH"],BGFX_DEBUG_NONE:[0,0,1,"c.BGFX_DEBUG_NONE"],BGFX_DEBUG_STATS:[0,0,1,"c.BGFX_DEBUG_STATS"],BGFX_DEBUG_TEXT:[0,0,1,"c.BGFX_DEBUG_TEXT"],BGFX_DEBUG_WIREFRAME:[0,0,1,"c.BGFX_DEBUG_WIREFRAME"],BGFX_HMD_DEVICE_RESOLUTION:[0,0,1,"c.BGFX_HMD_DEVICE_RESOLUTION"],BGFX_HMD_NONE:[0,0,1,"c.BGFX_HMD_NONE"],BGFX_HMD_RENDERING:[0,0,1,"c.BGFX_HMD_RENDERING"],BGFX_PCI_ID_AMD:[0,0,1,"c.BGFX_PCI_ID_AMD"],BGFX_PCI_ID_INTEL:[0,0,1,"c.BGFX_PCI_ID_INTEL"],BGFX_PCI_ID_NONE:[0,0,1,"c.BGFX_PCI_ID_NONE"],BGFX_PCI_ID_NVIDIA:[0,0,1,"c.BGFX_PCI_ID_NVIDIA"],BGFX_PCI_ID_SOFTWARE_RASTERIZER:[0,0,1,"c.BGFX_PCI_ID_SOFTWARE_RASTERIZER"],BGFX_RESET_CAPTURE:[0,0,1,"c.BGFX_RESET_CAPTURE"],BGFX_RESET_DEPTH_CLAMP:[0,0,1,"c.BGFX_RESET_DEPTH_CLAMP"],BGFX_RESET_FLIP_AFTER_RENDER:[0,0,1,"c.BGFX_RESET_FLIP_AFTER_RENDER"],BGFX_RESET_FLUSH_AFTER_RENDER:[0,0,1,"c.BGFX_RESET_FLUSH_AFTER_RENDER"],BGFX_RESET_FULLSCREEN:[0,0,1,"c.BGFX_RESET_FULLSCREEN"],BGFX_RESET_HIDPI:[0,0,1,"c.BGFX_RESET_HIDPI"],BGFX_RESET_HMD:[0,0,1,"c.BGFX_RESET_HMD"],BGFX_RESET_HMD_DEBUG:[0,0,1,"c.BGFX_RESET_HMD_DEBUG"],BGFX_RESET_HMD_RECENTER:[0,0,1,"c.BGFX_RESET_HMD_RECENTER"],BGFX_RESET_MAXANISOTROPY:[0,0,1,"c.BGFX_RESET_MAXANISOTROPY"],BGFX_RESET_MSAA_X16:[0,0,1,"c.BGFX_RESET_MSAA_X16"],BGFX_RESET_MSAA_X2:[0,0,1,"c.BGFX_RESET_MSAA_X2"],BGFX_RESET_MSAA_X4:[0,0,1,"c.BGFX_RESET_MSAA_X4"],BGFX_RESET_MSAA_X8:[0,0,1,"c.BGFX_RESET_MSAA_X8"],BGFX_RESET_NONE:[0,0,1,"c.BGFX_RESET_NONE"],BGFX_RESET_SRGB_BACKBUFFER:[0,0,1,"c.BGFX_RESET_SRGB_BACKBUFFER"],BGFX_RESET_VSYNC:[0,0,1,"c.BGFX_RESET_VSYNC"],BGFX_STATE_ALPHA_WRITE:[0,0,1,"c.BGFX_STATE_ALPHA_WRITE"],BGFX_STATE_DEFAULT:[0,0,1,"c.BGFX_STATE_DEFAULT"],BGFX_STATE_DEPTH_WRITE:[0,0,1,"c.BGFX_STATE_DEPTH_WRITE"],BGFX_STATE_RGB_WRITE:[0,0,1,"c.BGFX_STATE_RGB_WRITE"],BGFX_STENCIL_TEST_LESS:[0,0,1,"c.BGFX_STENCIL_TEST_LESS"]}},objnames:{"0":["c","macro","C macro"],"1":["cpp","class","C++ class"],"2":["cpp","type","C++ type"],"3":["cpp","function","C++ function"],"4":["cpp","member","C++ member"]},objtypes:{"0":"c:macro","1":"cpp:class","2":"cpp:type","3":"cpp:function","4":"cpp:member"},terms:{"001f":0,"0x000000ff":0,"16x":0,"202d":4,"20by":4,"20distanc":4,"20field":4,"20render":4,"20shape":4,"2450m":2,"2600k":2,"2bpp":0,"2xgtx780":2,"3rd":3,"3rdparti":4,"4250u":2,"4750hq":2,"4770k":2,"4770r":2,"4790k":2,"4_splat":6,"4bpp":0,"6200u":2,"64k":2,"_access":0,"_arglist":0,"_asint":0,"_attach":0,"_attr":0,"_attrib":0,"_bstencil":0,"_cach":0,"_callback":0,"_captur":0,"_code":0,"_convers":0,"_csh":0,"_cubemap":0,"_data":0,"_debug":0,"_decl":0,"_depth":0,"_depthformat":0,"_destdata":0,"_destdecl":0,"_destroyshad":0,"_destroytextur":0,"_deviceid":0,"_dst":0,"_dstmip":0,"_dstsize":0,"_dstx":0,"_dsty":0,"_dstz":0,"_enabl":0,"_epsilon":0,"_filepath":0,"_firstindex":0,"_flag":0,"_format":0,"_fsh":0,"_fstencil":0,"_handl":0,"_height":0,"_id":0,"_idb":0,"_index":0,"_index32":0,"_indic":0,"_indirecthandl":0,"_info":0,"_input":0,"_inputnorm":0,"_line":0,"_marker":0,"_max":0,"_mem":0,"_mip":0,"_mtx":0,"_name":0,"_normal":0,"_num":0,"_numi":0,"_numindic":0,"_nummip":0,"_numvertic":0,"_numx":0,"_numz":0,"_nwh":0,"_occlusionqueri":0,"_output":0,"_pitch":0,"_preservest":0,"_program":0,"_projl":0,"_projr":0,"_ptr":0,"_ratio":0,"_realloc":0,"_releasefn":0,"_remap":0,"_render":0,"_rgba":0,"_sampler":0,"_side":0,"_size":0,"_skip":0,"_small":0,"_src":0,"_srcdata":0,"_srcdecl":0,"_srcmip":0,"_srcx":0,"_srcy":0,"_srcz":0,"_stage":0,"_start":0,"_startindex":0,"_startvertex":0,"_state":0,"_stencil":0,"_str":0,"_stride":0,"_textureflag":0,"_tib":0,"_transform":0,"_tvb":0,"_type":0,"_uniform":0,"_userdata":0,"_vendorid":0,"_view":0,"_visibl":0,"_vsh":0,"_width":0,"_yflip":0,"byte":0,"case":[0,5],"char":0,"const":0,"default":[0,2,5],"enum":0,"float":[0,6],"fran\u00e7oi":5,"function":[0,4,5,6],"int":[0,5,6],"karad\u017ei\u0107":5,"milo\u0161":5,"new":0,"null":0,"public":[0,3],"return":0,"sk\u00f6ld":5,"static":[0,2],"switch":5,"to\u0161i\u0107":5,"transient":[0,2],"true":[0,2],"void":0,"while":[0,2],a_bitang:0,a_color0:0,a_color1:0,a_indic:0,a_norm:0,a_posit:0,a_tang:0,a_texcoord0:0,a_texcoord1:0,a_texcoord2:0,a_texcoord3:0,a_texcoord4:0,a_texcoord5:0,a_texcoord6:0,a_texcoord7:0,a_weight:0,abl:0,about:[0,2,5],abov:[4,5],access:[0,5,6],activ:1,actual:0,adapt:0,add:[0,5],adjust:[0,2],adreno320:2,adreno:5,advanc:0,advis:4,after:[0,1,5],agnost:[3,5],agre:5,ajohnson23:5,all:[0,1,4,5,6],alloc:0,allocatori:0,allocinstancedatabuff:0,alloctransform:0,alloctransientindexbuff:0,alloctransientvertexbuff:0,allow:[0,5,6],alpha:0,also:5,alwai:0,amd5770:2,amd6800:2,amd:[0,2],amount:0,andr3wmac:5,andr:5,andrew:5,android_ndk_arm:1,android_ndk_mip:1,android_ndk_root:1,android_ndk_x86:1,androideabi:1,androidndk:1,angl:2,ani:[0,1,4,5],anim:5,anisotrop:0,anisotropi:0,anoth:0,ansi:6,antialias:[2,4],antialis:4,anyth:5,apitrac:5,appear:[0,6],appletv:5,appli:0,applic:[0,2,5],appropri:1,apt:1,ara:4,arbitrari:0,arch:2,argument:0,aris:4,arm64:2,arm:[1,2,5],around:5,arrai:0,ascend:0,asm:[2,5],assess:0,asset:3,assum:0,astigmat:4,ati1:0,ati2:0,attach:0,attent:0,attila:5,attilaz:5,attrib:0,attribtyp:0,attribut:[0,6],author:6,auto:5,automat:5,autoselect:0,avoid:0,back:0,backbuff:0,backbufferd:0,backbufferratio:0,backend:[0,3],backfac:0,bagder:4,base:[0,2,4,5,6],bass:5,bc1:0,bc2:0,bc3:0,bc4:0,bc5:0,bc6h:0,bc7:0,becaus:0,befor:0,begin:[0,6],behavior:0,below:1,bernhard:4,better:5,between:[0,6],bgfx:[0,1,2,3,4,5,6],bgfx_alloc:0,bgfx_alloc_instance_data_buff:0,bgfx_alloc_transform:0,bgfx_alloc_transient_index_buff:0,bgfx_alloc_transient_vertex_buff:0,bgfx_attrib_t:0,bgfx_blit:0,bgfx_buffer_allow_res:0,bgfx_buffer_compute_read:0,bgfx_buffer_compute_read_writ:0,bgfx_buffer_compute_writ:0,bgfx_buffer_index32:0,bgfx_buffer_non:0,bgfx_calc_texture_s:0,bgfx_callback_interface_t:0,bgfx_callback_vtbl:0,bgfx_caps_:0,bgfx_caps_blend_independ:0,bgfx_caps_comput:0,bgfx_caps_draw_indirect:0,bgfx_caps_format_texture_2d:0,bgfx_caps_format_texture_2d_emul:0,bgfx_caps_format_texture_2d_srgb:0,bgfx_caps_format_texture_3d:0,bgfx_caps_format_texture_3d_emul:0,bgfx_caps_format_texture_3d_srgb:0,bgfx_caps_format_texture_cub:0,bgfx_caps_format_texture_cube_emul:0,bgfx_caps_format_texture_cube_srgb:0,bgfx_caps_format_texture_framebuff:0,bgfx_caps_format_texture_framebuffer_msaa:0,bgfx_caps_format_texture_imag:0,bgfx_caps_format_texture_msaa:0,bgfx_caps_format_texture_non:0,bgfx_caps_format_texture_vertex:0,bgfx_caps_fragment_depth:0,bgfx_caps_fragment_ord:0,bgfx_caps_gpu_t:0,bgfx_caps_hidpi:0,bgfx_caps_hmd:0,bgfx_caps_index32:0,bgfx_caps_instanc:0,bgfx_caps_occlusion_queri:0,bgfx_caps_renderer_multithread:0,bgfx_caps_swap_chain:0,bgfx_caps_t:0,bgfx_caps_texture_3d:0,bgfx_caps_texture_blit:0,bgfx_caps_texture_compare_al:0,bgfx_caps_texture_compare_lequ:0,bgfx_caps_texture_read_back:0,bgfx_caps_vertex_attrib_half:0,bgfx_check_avail_instance_data_buff:0,bgfx_check_avail_transient_index_buff:0,bgfx_check_avail_transient_vertex_buff:0,bgfx_clear_:0,bgfx_clear_non:0,bgfx_config_:5,bgfx_config_max_bon:0,bgfx_config_max_draw_cal:2,bgfx_config_multithread:0,bgfx_config_multithred:5,bgfx_config_renderer_opengl:5,bgfx_copi:0,bgfx_create_compute_program:0,bgfx_create_dynamic_index_buff:0,bgfx_create_dynamic_index_buffer_mem:0,bgfx_create_dynamic_vertex_buff:0,bgfx_create_dynamic_vertex_buffer_mem:0,bgfx_create_frame_buff:0,bgfx_create_frame_buffer_from_handl:0,bgfx_create_frame_buffer_from_nwh:0,bgfx_create_frame_buffer_sc:0,bgfx_create_index_buff:0,bgfx_create_indirect_buff:0,bgfx_create_occlusion_queri:0,bgfx_create_program:0,bgfx_create_shad:0,bgfx_create_textur:0,bgfx_create_texture_2d:0,bgfx_create_texture_2d_sc:0,bgfx_create_texture_3d:0,bgfx_create_texture_cub:0,bgfx_create_uniform:0,bgfx_create_vertex_buff:0,bgfx_cube_map_:0,bgfx_dbg_text_clear:0,bgfx_dbg_text_printf:0,bgfx_debug_ifh:0,bgfx_debug_non:0,bgfx_debug_stat:0,bgfx_debug_text:0,bgfx_debug_wirefram:0,bgfx_destroy_dynamic_index_buff:0,bgfx_destroy_dynamic_vertex_buff:0,bgfx_destroy_frame_buff:0,bgfx_destroy_index_buff:0,bgfx_destroy_indirect_buff:0,bgfx_destroy_occlusion_queri:0,bgfx_destroy_program:0,bgfx_destroy_shad:0,bgfx_destroy_textur:0,bgfx_destroy_uniform:0,bgfx_destroy_vertex_buff:0,bgfx_discard:0,bgfx_dispatch:0,bgfx_dispatch_indirect:0,bgfx_frame:0,bgfx_get_cap:0,bgfx_get_hmd:0,bgfx_get_internal_data:0,bgfx_get_renderer_typ:0,bgfx_get_result:0,bgfx_get_shader_uniform:0,bgfx_hmd_device_resolut:0,bgfx_hmd_eye_t:0,bgfx_hmd_none:0,bgfx_hmd_render:0,bgfx_hmd_t:0,bgfx_init:0,bgfx_internal_data_t:0,bgfx_invalid_handl:0,bgfx_make_ref:0,bgfx_make_ref_releas:0,bgfx_memory_t:0,bgfx_override_internal_textur:0,bgfx_override_internal_texture_ptr:0,bgfx_path:2,bgfx_pci_id_amd:0,bgfx_pci_id_intel:0,bgfx_pci_id_non:0,bgfx_pci_id_nvidia:0,bgfx_pci_id_software_raster:0,bgfx_platform_data_t:0,bgfx_read_frame_buff:0,bgfx_read_textur:0,bgfx_render_frame_t:0,bgfx_renderer_type_t:0,bgfx_reset:0,bgfx_reset_:0,bgfx_reset_captur:0,bgfx_reset_depth_clamp:0,bgfx_reset_flip_after_rend:0,bgfx_reset_flush_after_rend:0,bgfx_reset_fullscreen:0,bgfx_reset_hidpi:0,bgfx_reset_hmd:0,bgfx_reset_hmd_debug:0,bgfx_reset_hmd_recent:0,bgfx_reset_maxanisotropi:0,bgfx_reset_msaa_x16:0,bgfx_reset_msaa_x2:0,bgfx_reset_msaa_x4:0,bgfx_reset_msaa_x8:0,bgfx_reset_msaa_x:0,bgfx_reset_non:0,bgfx_reset_srgb_backbuff:0,bgfx_reset_vsync:0,bgfx_save_screen_shot:0,bgfx_set_compute_dynamic_index_buff:0,bgfx_set_compute_dynamic_vertex_buff:0,bgfx_set_compute_index_buff:0,bgfx_set_compute_indirect_buff:0,bgfx_set_compute_vertex_buff:0,bgfx_set_condit:0,bgfx_set_debug:0,bgfx_set_dynamic_index_buff:0,bgfx_set_dynamic_vertex_buff:0,bgfx_set_imag:0,bgfx_set_image_from_frame_buff:0,bgfx_set_index_buff:0,bgfx_set_instance_data_buff:0,bgfx_set_instance_data_from_dynamic_vertex_buff:0,bgfx_set_instance_data_from_vertex_buff:0,bgfx_set_mark:0,bgfx_set_palette_color:0,bgfx_set_platform_data:0,bgfx_set_scissor:0,bgfx_set_scissor_cach:0,bgfx_set_stat:0,bgfx_set_stencil:0,bgfx_set_textur:0,bgfx_set_texture_from_frame_buff:0,bgfx_set_transform:0,bgfx_set_transform_cach:0,bgfx_set_transient_index_buff:0,bgfx_set_transient_vertex_buff:0,bgfx_set_vertex_buff:0,bgfx_set_view_clear:0,bgfx_set_view_clear_mrt:0,bgfx_set_view_frame_buff:0,bgfx_set_view_nam:0,bgfx_set_view_rect:0,bgfx_set_view_rect_auto:0,bgfx_set_view_remap:0,bgfx_set_view_scissor:0,bgfx_set_view_seq:0,bgfx_set_view_transform:0,bgfx_set_view_transform_stereo:0,bgfx_shader:0,bgfx_shutdown:0,bgfx_state_alpha_ref:0,bgfx_state_alpha_writ:0,bgfx_state_blend_:0,bgfx_state_blend_equation_:0,bgfx_state_blend_equation_add:0,bgfx_state_blend_factor:0,bgfx_state_blend_func:0,bgfx_state_blend_inv_factor:0,bgfx_state_cull_:0,bgfx_state_default:0,bgfx_state_depth_test_:0,bgfx_state_depth_writ:0,bgfx_state_msaa:0,bgfx_state_point_s:0,bgfx_state_pt_:0,bgfx_state_rgb_writ:0,bgfx_stats_t:0,bgfx_stencil_non:0,bgfx_stencil_test_less:0,bgfx_submit:0,bgfx_submit_eye_first:0,bgfx_submit_indirect:0,bgfx_submit_occlusion_queri:0,bgfx_texture_:0,bgfx_texture_blit_dst:0,bgfx_texture_format_t:0,bgfx_texture_non:0,bgfx_texture_read_back:0,bgfx_texture_u_clamp:0,bgfx_texture_v_clamp:0,bgfx_topology_convert:0,bgfx_uniform_type_t:0,bgfx_update_dynamic_index_buff:0,bgfx_update_dynamic_vertex_buff:0,bgfx_update_texture_2d:0,bgfx_update_texture_3d:0,bgfx_update_texture_cub:0,bgfx_vertex_convert:0,bgfx_vertex_decl_add:0,bgfx_vertex_decl_begin:0,bgfx_vertex_decl_skip:0,bgfx_vertex_decl_t:0,bgfx_vertex_pack:0,bgfx_vertex_unpack:0,bgfx_view_non:0,bgfx_view_stereo:0,bgfx_weld_vertic:0,bgfxplatform:5,bgra8:0,bgra:0,bin:[1,2],binari:[0,1,2,4],bind:5,bit:0,bitang:0,bitbucket:4,bkaradz:[0,1,3,4,5],bleed:4,blend:[0,2],blender:4,blendish:3,bloat:4,block:0,bodi:2,bool:[0,6],both:0,bottleneck:0,bottom:0,branimir:[4,5],bring:[3,5],bsd:3,bucket:[0,5],bug:5,built:1,bunni:4,busi:4,c99:0,cach:[0,2,3],cache_read:0,cache_read_s:0,cache_writ:0,cacheread:0,cachereads:0,cachewrit:0,calctextures:0,calcul:0,calibr:0,call:[0,1,2,5],callback:0,callbacki:0,can:[0,1,2,5,6],cannot:0,capac:0,captur:[0,2,5],capture_begin:0,capture_end:0,capture_fram:0,capturebegin:0,captureend:0,capturefram:0,care:5,carni:5,caus:4,certain:[5,6],chang:[0,2,5],chapter:4,charl:5,cheap:4,check:[1,5],checkavailinstancedatabuff:0,checkavailtransientindexbuff:0,checkavailtransientvertexbuff:0,cherlin:5,choic:5,choos:5,chrnonolog:5,chrome33:2,chrome34:2,chrome41:2,chrome:2,ci20:[2,5],clamp:0,clang:[2,5],claus:3,clear:0,click:5,clip:0,clockwis:0,clone:1,code:[0,4,5],codexl:5,colbi:5,collin:5,color0:0,color1:0,color:0,com:[1,3,4,5],command:[0,1,2],common:4,commonli:1,compar:0,comparison:0,compil:[1,2,3,4],complex:0,compon:0,compress:3,concaten:0,config:[2,5],configur:[1,5],conjunct:0,conorstok:4,consequenti:4,consum:0,contact:3,contain:0,content:0,context:[0,5],continu:0,contour:4,contract:4,contribut:5,contributor:[3,4],convers:0,convert:[0,6],copi:0,copyright:4,core:1,coreutil:1,corner:0,correctli:5,correspond:0,count:0,counter:0,cowboi:4,cpp:1,cpu:[0,2],cputimebegin:0,cputimeend:0,cputimerfreq:0,creat:[0,5],createdynamicindexbuff:0,createdynamicvertexbuff:0,createframebuff:0,createindexbuff:0,createindirectbuff:0,createocclusionqueri:0,createprogram:0,createshad:0,createtextur:0,createtexture2d:0,createtexture3d:0,createtexturecub:0,createuniform:0,createvertexbuff:0,creation:0,creator:[2,5],cross:[3,5,6],crt:0,cube:0,cubemap:0,cull:0,current:[0,2],custom:[0,1,3],d0s8:0,d16:0,d16f:0,d24:0,d24f:0,d24s8:0,d32:0,d32f:0,d3d11:6,d3d9:6,d3d:0,dafont:4,damag:4,daniel:5,dario:5,dariomanesku:5,dark:5,data:[0,2,4],dbgtextclear:0,dbgtextprintf:0,debian8:2,debug64:1,debugcheck:0,debugg:[0,3],declar:0,decod:[0,5],def:6,defin:[5,6],delet:1,depend:0,deploi:1,deploy:5,depth:0,descript:5,desir:0,desktop:5,destin:0,destroi:0,destroydynamicindexbuff:0,destroydynamicvertexbuff:0,destroyframebuff:0,destroyindexbuff:0,destroyindirectbuff:0,destroyocclusionqueri:0,destroyprogram:0,destroyshad:0,destroytextur:0,destroyuniform:0,destroyvertexbuff:0,detail:[1,5],detect:5,dev:1,develop:1,devic:[0,1,5],deviceheight:0,deviceid:0,devicewidth:0,dialog:1,differ:[0,1,5,6],dim:2,direct3d11:0,direct3d12:0,direct3d9:0,direct3d:[0,5],direct:4,directori:[1,2,4,5],directx9:5,disabl:[0,2,5],discard:0,disclaim:4,dissector:5,distanc:[2,4],distribut:[4,5],dll:5,doe:0,doesn:[0,5],domain:3,don:[0,2,5],doubl:0,down:0,download:[1,2,5],drawback:6,driver:0,droid:4,drop:5,duangl:4,due:1,durat:0,dure:5,dx11:[2,5],dx12:5,dx9:[2,5],dxt1:0,dxt3:0,dxt5:0,dynam:0,dynamicindexbufferhandl:0,dynamicvertexbufferhandl:0,each:[0,1,5],eas:1,ebook:4,eclips:5,eclipsecon:5,edg:0,edit:1,edtaa3:3,effect:0,effici:0,egl:5,element:0,elit:4,embed:2,emoon:5,empti:0,emscripten:5,emul:0,enabl:[0,1,5],end:0,engin:[3,5],eniron:1,enleeten:5,enni:4,enough:0,enter:1,entri:5,enumer:0,enviro:1,equal:0,equat:[0,4],equival:0,error:[0,5],es2:2,etc1:0,etc2:[0,5],etc2a1:0,etc2a:0,etc:[1,3],euclidean:4,even:4,event:4,everi:5,everyon:5,exampl:[0,1],excess:5,execut:0,exemplari:4,exist:[0,5],expect:0,express:4,extern:0,f11:5,face:0,factor:0,fallback:5,fals:0,fast:0,fatal:0,fcpp:3,ff27:2,ff28:2,ff36:2,ff37:2,field:[0,2,4],file:[0,1,4,6],fill:0,film:1,filter:0,find:5,finish:0,fip:[1,5],fire:4,firefox:2,first:0,fit:[0,4],five:4,fiveminut:4,fix:[0,5],flavor:6,flip:0,floooh:[1,5],flush:0,follow:[1,2,4],fontawesom:4,fontfabr:4,fonts2u:4,fontspac:4,fontsquirrel:4,form:4,format:[0,6],forsyth:3,found:[0,5],fov:0,fragment:0,frame_r:2,framebuff:0,framebufferhandl:0,framework:[3,5],free:4,freebsd:5,freed:0,freetyp:3,frequenc:0,frexx:4,from:[0,1,5,6],front:0,fullscreen:5,g6430:2,gale:5,galleri:4,gallium:2,game:1,gameangst:4,garett:5,gcc:[2,5],geni:[1,5],geometri:[0,2,3],geometryc:3,get:0,getcap:0,gethmd:0,getinternaldata:0,getoffset:0,getrenderertyp:0,getresult:0,getshaderuniform:0,getsiz:0,getstat:0,getstrid:0,gfdl:4,git:1,github:[0,1,3,4,5],given:1,gl2:2,gle:5,glfw:3,global:2,glsl:3,glue:1,gnuwin32:1,good:4,googl:1,gpa:5,gpu:[0,2,5],gputimebegin:0,gputimeend:0,gputimerfreq:0,grace:4,grai:5,graphic:[0,2,3,4,5],group:0,gtbass:5,gtx260:2,gtx560ti:2,gtx650ti:2,gtx970:2,gui:[0,5],guillaum:5,gutenberg:4,half:0,handl:[0,5],hardwar:[0,5],haskel:5,have:[0,2,5],hd3000:2,hd5000:2,hd5200:2,hd8330:2,height:0,helloworlddebug:2,helper:6,herzog:4,hidpi:0,high:[4,5],highlevel:1,hlsl:6,hmd:[0,1,3],holder:4,holm:4,homogeneousdepth:0,how:5,howev:4,htm:1,html:[0,1],http:[0,1,3,4,5],icon:5,ident:0,ignor:0,illumin:2,imgui:3,immedi:4,immut:0,implement:[0,2,5],impli:4,improv:5,inabl:1,incident:4,includ:[1,4,5],increas:2,independ:[0,2],indexbuffercompress:4,indexbufferhandl:0,indic:0,indirectbufferhandl:0,infinit:0,info:[0,6],init:[0,5],injectionlist:5,input:[0,5,6],insid:[0,1,5],instal:1,instancedatabuff:0,instead:[0,1,6],institut:4,insuffici:0,int16:0,int1:0,int32_t:0,int64_t:0,intel:[0,2,5],intelgpa:3,interact:5,interfac:[0,4],intermedi:1,intern:[0,3],internaldata:0,interop:0,interrupt:4,invalid:0,invers:0,invert:0,involv:3,ios6:2,ios7:2,ipad:[2,5],iphon:[2,5],ipod:2,issu:[0,5],item:0,jame:5,james4k:5,jason:5,java:5,jcherlin:5,jean:5,jeremi:5,jeremieroi:5,jit:2,jnadro:5,johan:5,johnson:5,joseph:5,jourdan:5,julian:4,just:[0,5],kabini:2,kai:5,karadz:4,kick:0,klein:5,known:0,kocsi:5,kondrak:5,krzysztof:5,ktx:[0,6],l33t:5,lab:5,laboratori:4,languag:3,larg:0,last:0,latc1:0,latc2:0,launch:5,layout:2,leak:0,least:0,left:0,less:0,level:[0,5],liabil:4,liabl:4,libgl1:1,libiconv:1,libintl:1,librari:[0,1,2,3],libx11:1,licens:3,light:[2,4],lighttransport:4,lighttransportequ:4,like:6,limit:[2,4],line:[0,1,2],linear:0,list:[0,4,5],llvmpipe:2,load:[2,5],loat:0,locat:5,loss:4,low:5,lua:5,mac:5,macro:[0,6],made:2,mag:0,main:[0,5,6],maintain:[0,2],make:[0,1,5],makefil:6,makeref:0,mali:[2,5],manesku:5,manual:1,map:[0,2,4],marker:0,master:4,mat3:0,mat4:0,match:[0,5],materi:4,matric:[0,6],matrix:0,max:0,maxdrawcal:0,maxfbattach:0,maximimum:2,maximum:0,maxtextures:0,maxview:0,mccrari:5,mean:5,mechan:0,member:0,memononen:4,memori:0,merchant:4,mesa:[1,2,4],meshula:1,messag:0,met:4,metal:[0,5],mia:4,might:0,mike:5,mikepopoloski:5,milostos:5,min:0,mini:2,minim:4,minut:4,mip:[0,2,5],mipsel:1,mirror:0,mit:3,mkvfx:1,mobil:[4,5],mode:[0,2,4,5],model:[0,4],modif:[0,4],moment:0,monitor:5,moon:5,more:[0,1,5,6],most:[0,2],mous:2,mrt:2,msaa:0,mul:6,multi:0,multipl:[0,2,5],multipli:6,multithread:[0,5],must:[0,1,4,5,6],nacl:[1,2],nacl_sdk_root:1,nadro:5,name:[0,5],nativ:0,ndc:0,ndk:1,ndt:0,necessari:[0,1,5],necessarili:5,need:1,neg:0,neglig:4,net:1,next:0,nexu:2,nnnce:0,nodrev:[1,5],non:0,none:0,nor:5,norm:0,normal:[0,4],normal_map_example_with_scene_and_result:4,notat:0,noth:4,notic:[0,4],nsight:5,num:0,number:[0,2],numgpu:0,nvidia:0,nwh:0,obj:[4,6],object:0,obtain:0,obvious:5,occlusionqueryhandl:0,occlusionqueryresult:0,occur:0,ocharl:5,ocornut:[4,5],oculussdk:1,off:[0,2],offici:5,offset:0,oldschool:2,oliv:5,onc:0,onli:[0,1,5,6],open:[1,3,5],opengl:[0,2,5],openglinsight:4,openglinsightscod:4,oper:0,optim:[0,3],optimis:3,option:[1,2,5],orb:4,order:[0,2,3],ordinari:0,org:4,origin:0,originbottomleft:0,osx:[1,2,5],other:[0,1,3,4],otherwis:[0,4],oui:4,out:[4,6],output:[0,6],outsid:0,overal:6,overrid:0,overrideintern:0,overview:3,ovr:1,ovr_dir:1,own:[3,5],p0nce:5,pack:[0,1,4],packag:[0,1],page:3,paint:2,palett:0,paramet:0,pars:0,parti:3,particular:4,pass:[0,5],path:[0,1,5],pci:0,pdf:5,per:[0,2],perfhud:5,perform:0,perfstudio:5,permiss:[3,5],permit:4,persist:0,piolat:5,pisa:4,pitch:0,place:5,platformdata:0,pnacl:[1,2,5],png:[4,6],point:0,pointer:0,popoloski:5,port:[0,5],posit:0,possibl:[0,4,5],post:0,powervr:[2,5],ppapi:5,prebuilt:1,preciss:6,predefin:0,prefer:[0,2,5],preprocessor:[4,5,6],present:5,preserv:0,press:5,previou:0,previous:0,primari:0,primit:0,print:0,printf:0,pro:2,probe:4,procur:4,profil:[0,1,3],profit:4,programat:2,programhandl:0,project:[0,1,3],project_dir:1,provid:[0,4,5,6],ptc12:0,ptc12a:0,ptc14:0,ptc14a:0,ptc22:0,ptc24:0,purpos:4,pvr:[0,2,6],pvrtc1:[0,5],pvrtc2:0,python:[1,5],q8200:2,qualcomm:2,quaternion:0,questor:5,quickli:0,r11g11b10f:0,r16:0,r16f:0,r16i:0,r16u:0,r32f:0,r32i:0,r32u:0,r5g6b5:0,r8i:0,r8u:0,rang:0,raspberrypi:[2,5],raspbian:2,raster:0,rate:2,ratio:0,read:0,readback:2,readtextur:0,rectangl:0,redistribut:4,reflect:2,region:0,regular:6,rel:0,releas:[0,1],release32:1,release64:1,releasefn:0,remap:0,remark:0,remov:0,renderdoc:3,renderercontexti:5,renderertyp:0,renderfram:0,reorder:0,repeat:0,report:5,repositori:[1,3,4],repres:0,reproduc:4,request:0,requir:[0,2,4,5],reserv:[0,4],resiz:0,resolut:[0,4],respect:0,result:[0,1,5],retain:4,retriev:0,reus:0,rg16:0,rg16f:0,rg16i:0,rg16u:0,rg32f:0,rg32i:0,rg32u:0,rg8:0,rg8i:0,rg8u:0,rgb10a2:0,rgb5a1:0,rgb8:0,rgb8a1:0,rgb8i:0,rgb8u:0,rgb9e5f:0,rgb:0,rgba16:0,rgba16f:0,rgba16i:0,rgba16u:0,rgba32f:0,rgba32i:0,rgba32u:0,rgba4:0,rgba8:0,rgba8i:0,rgba8u:0,rgba:0,rhoot:5,richard:5,richardgal:5,right:[0,4,5],roi:5,rotat:0,rule:[0,5],run:[1,2],runn:5,runtim:[1,2,5],ruritania:4,rust:5,safari7:2,safe:[0,1],same:0,sampl:0,sampler2d:6,sampler:0,san:4,sane:5,savescreenshot:0,scheme:1,screen:[0,2],screen_shot:0,screenshot:0,scribbl:4,sdf:3,sdk:[1,5],sdl2:5,sdl:3,sdl_createwindow:5,sdl_window:5,sdlsetwindow:5,see:[0,1,5,6],select:[0,1],semant:[0,6],sens:5,separ:0,sequenti:[0,5],servic:4,set:[0,1,5],setbuff:0,setclearcolor:0,setcondit:0,setdebug:0,setimag:0,setindexbuff:0,setinstancedatabuff:0,setmark:0,setpalettecolor:0,setplatformdata:0,setscissor:0,setstat:0,setstencil:0,settextur:0,settransform:0,setup:0,setvertexbuff:0,setviewclear:0,setviewframebuff:0,setviewnam:0,setviewrect:0,setviewremap:0,setviewscissor:0,setviewseq:[0,5],setviewtransform:0,setx:1,sgx535:2,sgx540:2,sgx543:2,shade:2,shaderc:[3,5],shaderhandl:0,shadow:2,shall:4,sherlock:4,shot:[0,2],should:[0,2,5],show:2,side:[0,5],signika:4,similar:5,simpl:0,simplifi:6,simul:2,sinc:5,singl:[1,2,5],singlethread:0,size:[0,2],skip:0,slasinski:5,slide:5,sln:1,small:[2,4],softwar:[0,4],solut:1,some:[0,6],sometim:5,sort:[0,5],sourc:0,sourceforg:1,space:0,special:[4,5],specifi:0,spent:0,src:[1,5],srgb:0,stage:0,stanford:4,stanlo:5,start:0,stat:0,statu:0,stb:3,steamlink:5,step:1,stereo:0,store:0,stream:[0,5],stress:2,strict:4,stride:0,struct:0,structur:[0,1],stuart:5,stuartcarni:5,stub:5,studio:1,style:[0,2,3,5],submiss:[0,5],substitut:4,success:0,sudo:1,support:[0,1,3],sure:0,swap:0,sweep:4,swift:5,swiftshad:2,sync:0,syntax:6,t604:2,tabl:0,take:2,tangent:0,target:[0,1,2,5],teamciti:5,techniqu:6,tegra3:2,term:5,termin:0,test:0,texcoord0:0,texcoord1:0,texcoord2:0,texcoord3:0,texcoord4:0,texcoord5:0,texcoord6:0,texcoord7:0,texturec:3,textureformat:0,texturehandl:0,textureinfo:0,texturev:3,tga:6,than:5,thei:5,theme:4,theori:4,thi:[0,2,4,5,6],thread:0,thru:5,time:[0,1,5],timer:0,todo:3,token:6,toler:0,toni:5,toolchain:1,top:0,topolog:0,topologyconvert:0,tort:4,touch:0,tr1:1,trace:0,trace_varg:0,tracevarg:0,trai:5,transientindexbuff:0,transientvertexbuff:0,transit:2,translat:0,transpar:2,transport:4,tree:4,triangl:[0,3],trim:0,tristrip:0,truncat:0,turbosquid:4,turn:[0,2],twitter:5,two:0,txt:5,type:0,typograph:4,u_alpharef:0,u_invproj:0,u_invview:0,u_invviewproj:0,u_model:0,u_modelview:0,u_modelviewproj:0,u_proj:0,u_view:0,u_viewproj:0,u_viewrect:0,u_viewtexel:0,uffizi:4,uint16_max:0,uint16_t:0,uint32_max:0,uint32_t:0,uint64_t:0,uint8:0,uint8_max:0,uint8_t:0,uintptr_t:0,undef:0,under:[3,5],underli:0,understand:0,undesir:5,uniformhandl:0,uniformtyp:0,uniqu:0,unit:0,uniti:4,univers:4,unknown:0,unknowndepth:0,unlik:0,unorm:0,unpack:0,unrecover:0,unset:0,until:0,unus:0,updatedynamicindexbuff:0,updatedynamicvertexbuff:0,updatetexture2d:0,updatetexture3d:0,updatetexturecub:0,usag:0,user:[0,1,4],usual:5,util:1,va_list:0,va_start:0,valid:0,valu:[0,5,6],vari:6,variabl:[0,1],variou:[1,2,5],vec2:6,vec4:0,vector:[2,4,6],vendor:0,vendorid:0,verdon:5,vertexbufferhandl:0,vertexconvert:0,vertexdecl:0,vertexpack:0,vertexunpack:0,vertic:0,vfx:1,via:[0,2],video:2,viewer:3,viewoffset:0,virtual:0,visibl:0,visitor:4,vista:5,visual:[1,3],vogl:[4,5],volum:2,vs2008:[1,2,5],vs2012:[2,5],vs2013:2,vs2015:[1,2],vsync:2,vulkan:[0,5],wai:[0,4,5],wait:0,waitrend:0,waitsubmit:0,warn:0,warranti:4,wavefront:6,webgl:[2,5],weight:[0,2],weissflog:5,welcom:5,weld:0,weldvertic:0,well:4,were:[0,2],what:[2,3],when:[0,2,5,6],where:[0,5],whether:4,which:0,who:1,width:0,wiki:4,wikimedia:4,win7:2,win:[2,5],window:0,windows7:2,wine:2,winphon:5,winphone81:1,wip:5,wirefram:0,without:4,won:[0,5],work:[1,5],wrap:0,wrapper:1,write:[0,5],written:[0,1],www:4,x11proto:1,x64:[2,5],x86:[1,2,5],x86_64:1,xcode4:1,xcworkspac:1,xperia:2,yet:0,you:[0,1,2,5],your:[1,2,3,5],zlib:3},titles:["API Reference","Building","Examples","Documentation","License","Overview","Tools"],titleterms:{"30hz":2,"3rd":4,"60hz":2,"public":4,altern:1,amalgam:1,android:1,api:0,asset:4,avail:0,backend:5,blendish:4,blit:0,browser:2,bsd:4,buffer:[0,4],build:[1,6],bump:2,c99:2,cach:4,callback:2,cap:0,capabl:0,claus:4,client:1,compil:[5,6],compress:4,comput:0,condit:0,contact:5,content:3,contributor:5,cube:2,custom:5,debug:[0,5],debugdraw:2,debugg:5,defer:2,depend:1,dispatch:0,displai:0,document:3,domain:4,draw:0,drawstress:2,edtaa3:4,etc:5,exampl:2,fcpp:4,featur:0,flag:0,font:2,fontsdf:2,forsyth:4,frame:0,freetyp:4,gener:[0,1],geometri:6,geometryc:6,get:[1,5],glfw:5,glsl:4,hdr:2,head:0,helloworld:2,hmd:5,ibl:2,imag:0,imgui:4,index:[0,4],indirect:0,inform:0,initi:0,instanc:[0,2],integr:1,intelgpa:5,intern:5,involv:5,languag:5,librari:4,licens:4,linux:1,lod:2,mesh:2,metabal:2,miscellan:0,mit:4,mount:0,nanovg:[2,4],nativ:1,nbodi:2,occlus:[0,2],oculusvr:1,oit:2,optim:4,optimis:4,order:4,other:5,overview:5,page:5,parti:4,phone:1,pick:2,platform:[0,5],prerequisit:1,profil:5,program:0,project:5,queri:0,quick:1,raymarch:2,refer:0,render:[0,5],renderdoc:5,repositori:5,reset:0,resourc:0,rsm:2,scissor:0,sdf:4,sdl:5,shader:[0,6],shaderc:6,shadowmap:2,shadowvolum:2,shutdown:0,simpl:2,sourc:1,specif:0,start:1,state:0,statist:0,stb:4,stencil:[0,2],submit:0,support:5,system:1,terrain:2,test:2,text:0,textur:[0,6],texturec:6,texturev:6,todo:5,tool:[1,6],transform:0,triangl:4,uniform:0,updat:[0,2],vectordisplai:2,vertex:[0,4],view:0,viewer:6,visual:5,what:5,window:[1,2],winrt:1,wirefram:2,xcode:1,zlib:4}}) \ No newline at end of file +Search.setIndex({envversion:46,filenames:["bgfx","build","examples","index","license","overview","tools"],objects:{"":{"bgfx::Attrib":[0,1,1,"_CPPv2N4bgfx6AttribE"],"bgfx::Attrib::Bitangent":[0,1,1,"_CPPv2N4bgfx6Attrib9BitangentE"],"bgfx::Attrib::Color0":[0,1,1,"_CPPv2N4bgfx6Attrib6Color0E"],"bgfx::Attrib::Color1":[0,1,1,"_CPPv2N4bgfx6Attrib6Color1E"],"bgfx::Attrib::Count":[0,1,1,"_CPPv2N4bgfx6Attrib5CountE"],"bgfx::Attrib::Enum":[0,2,1,"_CPPv2N4bgfx6Attrib4EnumE"],"bgfx::Attrib::Indices":[0,1,1,"_CPPv2N4bgfx6Attrib7IndicesE"],"bgfx::Attrib::Normal":[0,1,1,"_CPPv2N4bgfx6Attrib6NormalE"],"bgfx::Attrib::Position":[0,1,1,"_CPPv2N4bgfx6Attrib8PositionE"],"bgfx::Attrib::Tangent":[0,1,1,"_CPPv2N4bgfx6Attrib7TangentE"],"bgfx::Attrib::TexCoord0":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord0E"],"bgfx::Attrib::TexCoord1":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord1E"],"bgfx::Attrib::TexCoord2":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord2E"],"bgfx::Attrib::TexCoord3":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord3E"],"bgfx::Attrib::TexCoord4":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord4E"],"bgfx::Attrib::TexCoord5":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord5E"],"bgfx::Attrib::TexCoord6":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord6E"],"bgfx::Attrib::TexCoord7":[0,1,1,"_CPPv2N4bgfx6Attrib9TexCoord7E"],"bgfx::Attrib::Weight":[0,1,1,"_CPPv2N4bgfx6Attrib6WeightE"],"bgfx::CallbackI":[0,1,1,"_CPPv2N4bgfx9CallbackIE"],"bgfx::CallbackI::cacheRead":[0,3,1,"_CPPv2N4bgfx9CallbackI9cacheReadE8uint64_tPv8uint32_t"],"bgfx::CallbackI::cacheReadSize":[0,3,1,"_CPPv2N4bgfx9CallbackI13cacheReadSizeE8uint64_t"],"bgfx::CallbackI::cacheWrite":[0,3,1,"_CPPv2N4bgfx9CallbackI10cacheWriteE8uint64_tPKv8uint32_t"],"bgfx::CallbackI::captureBegin":[0,3,1,"_CPPv2N4bgfx9CallbackI12captureBeginE8uint32_t8uint32_t8uint32_tN13TextureFormat4EnumEb"],"bgfx::CallbackI::captureEnd":[0,3,1,"_CPPv2N4bgfx9CallbackI10captureEndEv"],"bgfx::CallbackI::captureFrame":[0,3,1,"_CPPv2N4bgfx9CallbackI12captureFrameEPKv8uint32_t"],"bgfx::CallbackI::fatal":[0,3,1,"_CPPv2N4bgfx9CallbackI5fatalEN5Fatal4EnumEPKc"],"bgfx::CallbackI::screenShot":[0,3,1,"_CPPv2N4bgfx9CallbackI10screenShotEPKc8uint32_t8uint32_t8uint32_tPKv8uint32_tb"],"bgfx::CallbackI::traceVargs":[0,3,1,"_CPPv2N4bgfx9CallbackI10traceVargsEPKc8uint16_tPKc7va_list"],"bgfx::Caps":[0,1,1,"_CPPv2N4bgfx4CapsE"],"bgfx::Caps::GPU":[0,1,1,"_CPPv2N4bgfx4Caps3GPUE"],"bgfx::Caps::deviceId":[0,4,1,"_CPPv2N4bgfx4Caps8deviceIdE"],"bgfx::Caps::formats":[0,4,1,"_CPPv2N4bgfx4Caps7formatsE"],"bgfx::Caps::gpu":[0,4,1,"_CPPv2N4bgfx4Caps3gpuE"],"bgfx::Caps::homogeneousDepth":[0,4,1,"_CPPv2N4bgfx4Caps16homogeneousDepthE"],"bgfx::Caps::maxDrawCalls":[0,4,1,"_CPPv2N4bgfx4Caps12maxDrawCallsE"],"bgfx::Caps::maxFBAttachments":[0,4,1,"_CPPv2N4bgfx4Caps16maxFBAttachmentsE"],"bgfx::Caps::maxTextureSize":[0,4,1,"_CPPv2N4bgfx4Caps14maxTextureSizeE"],"bgfx::Caps::maxViews":[0,4,1,"_CPPv2N4bgfx4Caps8maxViewsE"],"bgfx::Caps::numGPUs":[0,4,1,"_CPPv2N4bgfx4Caps7numGPUsE"],"bgfx::Caps::originBottomLeft":[0,4,1,"_CPPv2N4bgfx4Caps16originBottomLeftE"],"bgfx::Caps::rendererType":[0,4,1,"_CPPv2N4bgfx4Caps12rendererTypeE"],"bgfx::Caps::supported":[0,4,1,"_CPPv2N4bgfx4Caps9supportedE"],"bgfx::Caps::vendorId":[0,4,1,"_CPPv2N4bgfx4Caps8vendorIdE"],"bgfx::HMD":[0,1,1,"_CPPv2N4bgfx3HMDE"],"bgfx::HMD::Eye":[0,1,1,"_CPPv2N4bgfx3HMD3EyeE"],"bgfx::HMD::Eye::fov":[0,4,1,"_CPPv2N4bgfx3HMD3Eye3fovE"],"bgfx::HMD::Eye::projection":[0,4,1,"_CPPv2N4bgfx3HMD3Eye10projectionE"],"bgfx::HMD::Eye::rotation":[0,4,1,"_CPPv2N4bgfx3HMD3Eye8rotationE"],"bgfx::HMD::Eye::translation":[0,4,1,"_CPPv2N4bgfx3HMD3Eye11translationE"],"bgfx::HMD::Eye::viewOffset":[0,4,1,"_CPPv2N4bgfx3HMD3Eye10viewOffsetE"],"bgfx::HMD::deviceHeight":[0,4,1,"_CPPv2N4bgfx3HMD12deviceHeightE"],"bgfx::HMD::deviceWidth":[0,4,1,"_CPPv2N4bgfx3HMD11deviceWidthE"],"bgfx::HMD::flags":[0,4,1,"_CPPv2N4bgfx3HMD5flagsE"],"bgfx::HMD::height":[0,4,1,"_CPPv2N4bgfx3HMD6heightE"],"bgfx::HMD::width":[0,4,1,"_CPPv2N4bgfx3HMD5widthE"],"bgfx::InternalData":[0,1,1,"_CPPv2N4bgfx12InternalDataE"],"bgfx::InternalData::caps":[0,4,1,"_CPPv2N4bgfx12InternalData4capsE"],"bgfx::InternalData::context":[0,4,1,"_CPPv2N4bgfx12InternalData7contextE"],"bgfx::Memory":[0,1,1,"_CPPv2N4bgfx6MemoryE"],"bgfx::OcclusionQueryResult":[0,1,1,"_CPPv2N4bgfx20OcclusionQueryResultE"],"bgfx::OcclusionQueryResult::Count":[0,1,1,"_CPPv2N4bgfx20OcclusionQueryResult5CountE"],"bgfx::OcclusionQueryResult::Enum":[0,2,1,"_CPPv2N4bgfx20OcclusionQueryResult4EnumE"],"bgfx::OcclusionQueryResult::Invisible":[0,1,1,"_CPPv2N4bgfx20OcclusionQueryResult9InvisibleE"],"bgfx::OcclusionQueryResult::NoResult":[0,1,1,"_CPPv2N4bgfx20OcclusionQueryResult8NoResultE"],"bgfx::OcclusionQueryResult::Visible":[0,1,1,"_CPPv2N4bgfx20OcclusionQueryResult7VisibleE"],"bgfx::PlatformData":[0,1,1,"_CPPv2N4bgfx12PlatformDataE"],"bgfx::PlatformData::backBuffer":[0,4,1,"_CPPv2N4bgfx12PlatformData10backBufferE"],"bgfx::PlatformData::backBufferDS":[0,4,1,"_CPPv2N4bgfx12PlatformData12backBufferDSE"],"bgfx::PlatformData::context":[0,4,1,"_CPPv2N4bgfx12PlatformData7contextE"],"bgfx::PlatformData::ndt":[0,4,1,"_CPPv2N4bgfx12PlatformData3ndtE"],"bgfx::PlatformData::nwh":[0,4,1,"_CPPv2N4bgfx12PlatformData3nwhE"],"bgfx::RenderFrame":[0,1,1,"_CPPv2N4bgfx11RenderFrameE"],"bgfx::RendererType":[0,1,1,"_CPPv2N4bgfx12RendererTypeE"],"bgfx::RendererType::Count":[0,1,1,"_CPPv2N4bgfx12RendererType5CountE"],"bgfx::RendererType::Direct3D11":[0,1,1,"_CPPv2N4bgfx12RendererType10Direct3D11E"],"bgfx::RendererType::Direct3D12":[0,1,1,"_CPPv2N4bgfx12RendererType10Direct3D12E"],"bgfx::RendererType::Direct3D9":[0,1,1,"_CPPv2N4bgfx12RendererType9Direct3D9E"],"bgfx::RendererType::Enum":[0,2,1,"_CPPv2N4bgfx12RendererType4EnumE"],"bgfx::RendererType::Metal":[0,1,1,"_CPPv2N4bgfx12RendererType5MetalE"],"bgfx::RendererType::Null":[0,1,1,"_CPPv2N4bgfx12RendererType4NullE"],"bgfx::RendererType::OpenGL":[0,1,1,"_CPPv2N4bgfx12RendererType6OpenGLE"],"bgfx::RendererType::OpenGLES":[0,1,1,"_CPPv2N4bgfx12RendererType8OpenGLESE"],"bgfx::RendererType::Vulkan":[0,1,1,"_CPPv2N4bgfx12RendererType6VulkanE"],"bgfx::Stats":[0,1,1,"_CPPv2N4bgfx5StatsE"],"bgfx::Stats::cpuTimeBegin":[0,4,1,"_CPPv2N4bgfx5Stats12cpuTimeBeginE"],"bgfx::Stats::cpuTimeEnd":[0,4,1,"_CPPv2N4bgfx5Stats10cpuTimeEndE"],"bgfx::Stats::cpuTimerFreq":[0,4,1,"_CPPv2N4bgfx5Stats12cpuTimerFreqE"],"bgfx::Stats::gpuTimeBegin":[0,4,1,"_CPPv2N4bgfx5Stats12gpuTimeBeginE"],"bgfx::Stats::gpuTimeEnd":[0,4,1,"_CPPv2N4bgfx5Stats10gpuTimeEndE"],"bgfx::Stats::gpuTimerFreq":[0,4,1,"_CPPv2N4bgfx5Stats12gpuTimerFreqE"],"bgfx::Stats::waitRender":[0,4,1,"_CPPv2N4bgfx5Stats10waitRenderE"],"bgfx::Stats::waitSubmit":[0,4,1,"_CPPv2N4bgfx5Stats10waitSubmitE"],"bgfx::TextureFormat":[0,1,1,"_CPPv2N4bgfx13TextureFormatE"],"bgfx::TextureFormat::A8":[0,1,1,"_CPPv2N4bgfx13TextureFormat2A8E"],"bgfx::TextureFormat::BC1":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC1E"],"bgfx::TextureFormat::BC2":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC2E"],"bgfx::TextureFormat::BC3":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC3E"],"bgfx::TextureFormat::BC4":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC4E"],"bgfx::TextureFormat::BC5":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC5E"],"bgfx::TextureFormat::BC6H":[0,1,1,"_CPPv2N4bgfx13TextureFormat4BC6HE"],"bgfx::TextureFormat::BC7":[0,1,1,"_CPPv2N4bgfx13TextureFormat3BC7E"],"bgfx::TextureFormat::BGRA8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5BGRA8E"],"bgfx::TextureFormat::Count":[0,1,1,"_CPPv2N4bgfx13TextureFormat5CountE"],"bgfx::TextureFormat::D0S8":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D0S8E"],"bgfx::TextureFormat::D16":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D16E"],"bgfx::TextureFormat::D16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D16FE"],"bgfx::TextureFormat::D24":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D24E"],"bgfx::TextureFormat::D24F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D24FE"],"bgfx::TextureFormat::D24S8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5D24S8E"],"bgfx::TextureFormat::D32":[0,1,1,"_CPPv2N4bgfx13TextureFormat3D32E"],"bgfx::TextureFormat::D32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4D32FE"],"bgfx::TextureFormat::ETC1":[0,1,1,"_CPPv2N4bgfx13TextureFormat4ETC1E"],"bgfx::TextureFormat::ETC2":[0,1,1,"_CPPv2N4bgfx13TextureFormat4ETC2E"],"bgfx::TextureFormat::ETC2A":[0,1,1,"_CPPv2N4bgfx13TextureFormat5ETC2AE"],"bgfx::TextureFormat::ETC2A1":[0,1,1,"_CPPv2N4bgfx13TextureFormat6ETC2A1E"],"bgfx::TextureFormat::Enum":[0,2,1,"_CPPv2N4bgfx13TextureFormat4EnumE"],"bgfx::TextureFormat::PTC12":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC12E"],"bgfx::TextureFormat::PTC12A":[0,1,1,"_CPPv2N4bgfx13TextureFormat6PTC12AE"],"bgfx::TextureFormat::PTC14":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC14E"],"bgfx::TextureFormat::PTC14A":[0,1,1,"_CPPv2N4bgfx13TextureFormat6PTC14AE"],"bgfx::TextureFormat::PTC22":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC22E"],"bgfx::TextureFormat::PTC24":[0,1,1,"_CPPv2N4bgfx13TextureFormat5PTC24E"],"bgfx::TextureFormat::R1":[0,1,1,"_CPPv2N4bgfx13TextureFormat2R1E"],"bgfx::TextureFormat::R11G11B10F":[0,1,1,"_CPPv2N4bgfx13TextureFormat10R11G11B10FE"],"bgfx::TextureFormat::R16":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R16E"],"bgfx::TextureFormat::R16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16FE"],"bgfx::TextureFormat::R16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16IE"],"bgfx::TextureFormat::R16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16SE"],"bgfx::TextureFormat::R16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R16UE"],"bgfx::TextureFormat::R32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32FE"],"bgfx::TextureFormat::R32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32IE"],"bgfx::TextureFormat::R32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4R32UE"],"bgfx::TextureFormat::R5G6B5":[0,1,1,"_CPPv2N4bgfx13TextureFormat6R5G6B5E"],"bgfx::TextureFormat::R8":[0,1,1,"_CPPv2N4bgfx13TextureFormat2R8E"],"bgfx::TextureFormat::R8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8IE"],"bgfx::TextureFormat::R8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8SE"],"bgfx::TextureFormat::R8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat3R8UE"],"bgfx::TextureFormat::RG16":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG16E"],"bgfx::TextureFormat::RG16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16FE"],"bgfx::TextureFormat::RG16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16IE"],"bgfx::TextureFormat::RG16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16SE"],"bgfx::TextureFormat::RG16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG16UE"],"bgfx::TextureFormat::RG32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32FE"],"bgfx::TextureFormat::RG32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32IE"],"bgfx::TextureFormat::RG32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RG32UE"],"bgfx::TextureFormat::RG8":[0,1,1,"_CPPv2N4bgfx13TextureFormat3RG8E"],"bgfx::TextureFormat::RG8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8IE"],"bgfx::TextureFormat::RG8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8SE"],"bgfx::TextureFormat::RG8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RG8UE"],"bgfx::TextureFormat::RGB10A2":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGB10A2E"],"bgfx::TextureFormat::RGB5A1":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGB5A1E"],"bgfx::TextureFormat::RGB8":[0,1,1,"_CPPv2N4bgfx13TextureFormat4RGB8E"],"bgfx::TextureFormat::RGB8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8IE"],"bgfx::TextureFormat::RGB8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8SE"],"bgfx::TextureFormat::RGB8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGB8UE"],"bgfx::TextureFormat::RGB9E5F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGB9E5FE"],"bgfx::TextureFormat::RGBA16":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA16E"],"bgfx::TextureFormat::RGBA16F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16FE"],"bgfx::TextureFormat::RGBA16I":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16IE"],"bgfx::TextureFormat::RGBA16S":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16SE"],"bgfx::TextureFormat::RGBA16U":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA16UE"],"bgfx::TextureFormat::RGBA32F":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32FE"],"bgfx::TextureFormat::RGBA32I":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32IE"],"bgfx::TextureFormat::RGBA32U":[0,1,1,"_CPPv2N4bgfx13TextureFormat7RGBA32UE"],"bgfx::TextureFormat::RGBA4":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGBA4E"],"bgfx::TextureFormat::RGBA8":[0,1,1,"_CPPv2N4bgfx13TextureFormat5RGBA8E"],"bgfx::TextureFormat::RGBA8I":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8IE"],"bgfx::TextureFormat::RGBA8S":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8SE"],"bgfx::TextureFormat::RGBA8U":[0,1,1,"_CPPv2N4bgfx13TextureFormat6RGBA8UE"],"bgfx::TextureFormat::Unknown":[0,1,1,"_CPPv2N4bgfx13TextureFormat7UnknownE"],"bgfx::TextureFormat::UnknownDepth":[0,1,1,"_CPPv2N4bgfx13TextureFormat12UnknownDepthE"],"bgfx::TopologyConvert":[0,1,1,"_CPPv2N4bgfx15TopologyConvertE"],"bgfx::TopologyConvert::Count":[0,1,1,"_CPPv2N4bgfx15TopologyConvert5CountE"],"bgfx::TopologyConvert::Enum":[0,2,1,"_CPPv2N4bgfx15TopologyConvert4EnumE"],"bgfx::TopologyConvert::LineStripToLineList":[0,1,1,"_CPPv2N4bgfx15TopologyConvert19LineStripToLineListE"],"bgfx::TopologyConvert::TriListFlipWinding":[0,1,1,"_CPPv2N4bgfx15TopologyConvert18TriListFlipWindingE"],"bgfx::TopologyConvert::TriListToLineList":[0,1,1,"_CPPv2N4bgfx15TopologyConvert17TriListToLineListE"],"bgfx::TopologyConvert::TriStripToTriList":[0,1,1,"_CPPv2N4bgfx15TopologyConvert17TriStripToTriListE"],"bgfx::TopologySort":[0,1,1,"_CPPv2N4bgfx12TopologySortE"],"bgfx::TopologySort::Count":[0,1,1,"_CPPv2N4bgfx12TopologySort5CountE"],"bgfx::TopologySort::DirectionBackToFrontAvg":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionBackToFrontAvgE"],"bgfx::TopologySort::DirectionBackToFrontMax":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionBackToFrontMaxE"],"bgfx::TopologySort::DirectionBackToFrontMin":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionBackToFrontMinE"],"bgfx::TopologySort::DirectionFrontToBackAvg":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionFrontToBackAvgE"],"bgfx::TopologySort::DirectionFrontToBackMax":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionFrontToBackMaxE"],"bgfx::TopologySort::DirectionFrontToBackMin":[0,1,1,"_CPPv2N4bgfx12TopologySort23DirectionFrontToBackMinE"],"bgfx::TopologySort::DistanceBackToFrontAvg":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceBackToFrontAvgE"],"bgfx::TopologySort::DistanceBackToFrontMax":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceBackToFrontMaxE"],"bgfx::TopologySort::DistanceBackToFrontMin":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceBackToFrontMinE"],"bgfx::TopologySort::DistanceFrontToBackAvg":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceFrontToBackAvgE"],"bgfx::TopologySort::DistanceFrontToBackMax":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceFrontToBackMaxE"],"bgfx::TopologySort::DistanceFrontToBackMin":[0,1,1,"_CPPv2N4bgfx12TopologySort22DistanceFrontToBackMinE"],"bgfx::TopologySort::Enum":[0,2,1,"_CPPv2N4bgfx12TopologySort4EnumE"],"bgfx::UniformType":[0,1,1,"_CPPv2N4bgfx11UniformTypeE"],"bgfx::UniformType::Count":[0,1,1,"_CPPv2N4bgfx11UniformType5CountE"],"bgfx::UniformType::End":[0,1,1,"_CPPv2N4bgfx11UniformType3EndE"],"bgfx::UniformType::Enum":[0,2,1,"_CPPv2N4bgfx11UniformType4EnumE"],"bgfx::UniformType::Int1":[0,1,1,"_CPPv2N4bgfx11UniformType4Int1E"],"bgfx::UniformType::Mat3":[0,1,1,"_CPPv2N4bgfx11UniformType4Mat3E"],"bgfx::UniformType::Mat4":[0,1,1,"_CPPv2N4bgfx11UniformType4Mat4E"],"bgfx::UniformType::Vec4":[0,1,1,"_CPPv2N4bgfx11UniformType4Vec4E"],"bgfx::VertexDecl":[0,1,1,"_CPPv2N4bgfx10VertexDeclE"],"bgfx::VertexDecl::add":[0,3,1,"_CPPv2N4bgfx10VertexDecl3addEN6Attrib4EnumE7uint8_tN10AttribType4EnumEbb"],"bgfx::VertexDecl::begin":[0,3,1,"_CPPv2N4bgfx10VertexDecl5beginEN12RendererType4EnumE"],"bgfx::VertexDecl::decode":[0,3,1,"_CPPv2N4bgfx10VertexDecl6decodeEN6Attrib4EnumER7uint8_tRN10AttribType4EnumERbRb"],"bgfx::VertexDecl::end":[0,3,1,"_CPPv2N4bgfx10VertexDecl3endEv"],"bgfx::VertexDecl::getOffset":[0,3,1,"_CPPv2N4bgfx10VertexDecl9getOffsetEN6Attrib4EnumE"],"bgfx::VertexDecl::getSize":[0,3,1,"_CPPv2N4bgfx10VertexDecl7getSizeE8uint32_t"],"bgfx::VertexDecl::getStride":[0,3,1,"_CPPv2N4bgfx10VertexDecl9getStrideEv"],"bgfx::VertexDecl::has":[0,3,1,"_CPPv2N4bgfx10VertexDecl3hasEN6Attrib4EnumE"],"bgfx::VertexDecl::skip":[0,3,1,"_CPPv2N4bgfx10VertexDecl4skipE7uint8_t"],"bgfx::alloc":[0,3,1,"_CPPv2N4bgfx5allocE8uint32_t"],"bgfx::allocInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx23allocInstanceDataBufferE8uint32_t8uint16_t"],"bgfx::allocTransform":[0,3,1,"_CPPv2N4bgfx14allocTransformEP9Transform8uint16_t"],"bgfx::allocTransientIndexBuffer":[0,3,1,"_CPPv2N4bgfx25allocTransientIndexBufferEP20TransientIndexBuffer8uint32_t"],"bgfx::allocTransientVertexBuffer":[0,3,1,"_CPPv2N4bgfx26allocTransientVertexBufferEP21TransientVertexBuffer8uint32_tRK10VertexDecl"],"bgfx::blit":[0,3,1,"_CPPv2N4bgfx4blitE7uint8_t13TextureHandle8uint16_t8uint16_t13TextureHandle8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::calcTextureSize":[0,3,1,"_CPPv2N4bgfx15calcTextureSizeER11TextureInfo8uint16_t8uint16_t8uint16_tb7uint8_tN13TextureFormat4EnumE"],"bgfx::checkAvailInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx28checkAvailInstanceDataBufferE8uint32_t8uint16_t"],"bgfx::checkAvailTransientIndexBuffer":[0,3,1,"_CPPv2N4bgfx30checkAvailTransientIndexBufferE8uint32_t"],"bgfx::checkAvailTransientVertexBuffer":[0,3,1,"_CPPv2N4bgfx31checkAvailTransientVertexBufferE8uint32_tRK10VertexDecl"],"bgfx::copy":[0,3,1,"_CPPv2N4bgfx4copyEPKv8uint32_t"],"bgfx::createDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx24createDynamicIndexBufferE8uint32_t8uint16_t"],"bgfx::createDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx25createDynamicVertexBufferE8uint32_tRK10VertexDecl8uint16_t"],"bgfx::createFrameBuffer":[0,3,1,"_CPPv2N4bgfx17createFrameBufferE8uint16_t8uint16_tN13TextureFormat4EnumE8uint32_t"],"bgfx::createIndexBuffer":[0,3,1,"_CPPv2N4bgfx17createIndexBufferEPK6Memory8uint16_t"],"bgfx::createIndirectBuffer":[0,3,1,"_CPPv2N4bgfx20createIndirectBufferE8uint32_t"],"bgfx::createOcclusionQuery":[0,3,1,"_CPPv2N4bgfx20createOcclusionQueryEv"],"bgfx::createProgram":[0,3,1,"_CPPv2N4bgfx13createProgramE12ShaderHandle12ShaderHandleb"],"bgfx::createShader":[0,3,1,"_CPPv2N4bgfx12createShaderEPK6Memory"],"bgfx::createTexture":[0,3,1,"_CPPv2N4bgfx13createTextureEPK6Memory8uint32_t7uint8_tP11TextureInfo"],"bgfx::createTexture2D":[0,3,1,"_CPPv2N4bgfx15createTexture2DE8uint16_t8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createTexture3D":[0,3,1,"_CPPv2N4bgfx15createTexture3DE8uint16_t8uint16_t8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createTextureCube":[0,3,1,"_CPPv2N4bgfx17createTextureCubeE8uint16_t7uint8_tN13TextureFormat4EnumE8uint32_tPK6Memory"],"bgfx::createUniform":[0,3,1,"_CPPv2N4bgfx13createUniformEPKcN11UniformType4EnumE8uint16_t"],"bgfx::createVertexBuffer":[0,3,1,"_CPPv2N4bgfx18createVertexBufferEPK6MemoryRK10VertexDecl8uint16_t"],"bgfx::dbgTextClear":[0,3,1,"_CPPv2N4bgfx12dbgTextClearE7uint8_tb"],"bgfx::dbgTextPrintf":[0,3,1,"_CPPv2N4bgfx13dbgTextPrintfE8uint16_t8uint16_t7uint8_tPKcz"],"bgfx::destroyDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx25destroyDynamicIndexBufferE24DynamicIndexBufferHandle"],"bgfx::destroyDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx26destroyDynamicVertexBufferE25DynamicVertexBufferHandle"],"bgfx::destroyFrameBuffer":[0,3,1,"_CPPv2N4bgfx18destroyFrameBufferE17FrameBufferHandle"],"bgfx::destroyIndexBuffer":[0,3,1,"_CPPv2N4bgfx18destroyIndexBufferE17IndexBufferHandle"],"bgfx::destroyIndirectBuffer":[0,3,1,"_CPPv2N4bgfx21destroyIndirectBufferE20IndirectBufferHandle"],"bgfx::destroyOcclusionQuery":[0,3,1,"_CPPv2N4bgfx21destroyOcclusionQueryE20OcclusionQueryHandle"],"bgfx::destroyProgram":[0,3,1,"_CPPv2N4bgfx14destroyProgramE13ProgramHandle"],"bgfx::destroyShader":[0,3,1,"_CPPv2N4bgfx13destroyShaderE12ShaderHandle"],"bgfx::destroyTexture":[0,3,1,"_CPPv2N4bgfx14destroyTextureE13TextureHandle"],"bgfx::destroyUniform":[0,3,1,"_CPPv2N4bgfx14destroyUniformE13UniformHandle"],"bgfx::destroyVertexBuffer":[0,3,1,"_CPPv2N4bgfx19destroyVertexBufferE18VertexBufferHandle"],"bgfx::discard":[0,3,1,"_CPPv2N4bgfx7discardEv"],"bgfx::dispatch":[0,3,1,"_CPPv2N4bgfx8dispatchE7uint8_t13ProgramHandle8uint16_t8uint16_t8uint16_t7uint8_t"],"bgfx::frame":[0,3,1,"_CPPv2N4bgfx5frameEb"],"bgfx::getCaps":[0,3,1,"_CPPv2N4bgfx7getCapsEv"],"bgfx::getHMD":[0,3,1,"_CPPv2N4bgfx6getHMDEv"],"bgfx::getInternalData":[0,3,1,"_CPPv2N4bgfx15getInternalDataEv"],"bgfx::getRendererType":[0,3,1,"_CPPv2N4bgfx15getRendererTypeEv"],"bgfx::getResult":[0,3,1,"_CPPv2N4bgfx9getResultE20OcclusionQueryHandle"],"bgfx::getShaderUniforms":[0,3,1,"_CPPv2N4bgfx17getShaderUniformsE12ShaderHandleP13UniformHandle8uint16_t"],"bgfx::getStats":[0,3,1,"_CPPv2N4bgfx8getStatsEv"],"bgfx::init":[0,3,1,"_CPPv2N4bgfx4initEN12RendererType4EnumE8uint16_t8uint16_tP9CallbackIPN2bx10AllocatorIE"],"bgfx::makeRef":[0,3,1,"_CPPv2N4bgfx7makeRefEPKv8uint32_t9ReleaseFnPv"],"bgfx::overrideInternal":[0,3,1,"_CPPv2N4bgfx16overrideInternalE13TextureHandle9uintptr_t"],"bgfx::readTexture":[0,3,1,"_CPPv2N4bgfx11readTextureE13TextureHandlePv"],"bgfx::renderFrame":[0,3,1,"_CPPv2N4bgfx11renderFrameEv"],"bgfx::reset":[0,3,1,"_CPPv2N4bgfx5resetE8uint32_t8uint32_t8uint32_t"],"bgfx::saveScreenShot":[0,3,1,"_CPPv2N4bgfx14saveScreenShotEPKc"],"bgfx::setBuffer":[0,3,1,"_CPPv2N4bgfx9setBufferE7uint8_t17IndexBufferHandleN6Access4EnumE"],"bgfx::setCondition":[0,3,1,"_CPPv2N4bgfx12setConditionE20OcclusionQueryHandleb"],"bgfx::setDebug":[0,3,1,"_CPPv2N4bgfx8setDebugE8uint32_t"],"bgfx::setImage":[0,3,1,"_CPPv2N4bgfx8setImageE7uint8_t13UniformHandle13TextureHandle7uint8_tN6Access4EnumEN13TextureFormat4EnumE"],"bgfx::setIndexBuffer":[0,3,1,"_CPPv2N4bgfx14setIndexBufferE17IndexBufferHandle"],"bgfx::setInstanceDataBuffer":[0,3,1,"_CPPv2N4bgfx21setInstanceDataBufferEPK18InstanceDataBuffer8uint32_t"],"bgfx::setMarker":[0,3,1,"_CPPv2N4bgfx9setMarkerEPKc"],"bgfx::setPaletteColor":[0,3,1,"_CPPv2N4bgfx15setPaletteColorE7uint8_t8uint32_t"],"bgfx::setPlatformData":[0,3,1,"_CPPv2N4bgfx15setPlatformDataERK12PlatformData"],"bgfx::setScissor":[0,3,1,"_CPPv2N4bgfx10setScissorE8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setState":[0,3,1,"_CPPv2N4bgfx8setStateE8uint64_t8uint32_t"],"bgfx::setStencil":[0,3,1,"_CPPv2N4bgfx10setStencilE8uint32_t8uint32_t"],"bgfx::setTexture":[0,3,1,"_CPPv2N4bgfx10setTextureE7uint8_t13UniformHandle13TextureHandle8uint32_t"],"bgfx::setTransform":[0,3,1,"_CPPv2N4bgfx12setTransformEPKv8uint16_t"],"bgfx::setVertexBuffer":[0,3,1,"_CPPv2N4bgfx15setVertexBufferE18VertexBufferHandle"],"bgfx::setViewClear":[0,3,1,"_CPPv2N4bgfx12setViewClearE7uint8_t8uint16_t8uint32_tf7uint8_t"],"bgfx::setViewFrameBuffer":[0,3,1,"_CPPv2N4bgfx18setViewFrameBufferE7uint8_t17FrameBufferHandle"],"bgfx::setViewName":[0,3,1,"_CPPv2N4bgfx11setViewNameE7uint8_tPKc"],"bgfx::setViewRect":[0,3,1,"_CPPv2N4bgfx11setViewRectE7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setViewRemap":[0,3,1,"_CPPv2N4bgfx12setViewRemapE7uint8_t7uint8_tPKv"],"bgfx::setViewScissor":[0,3,1,"_CPPv2N4bgfx14setViewScissorE7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t"],"bgfx::setViewSeq":[0,3,1,"_CPPv2N4bgfx10setViewSeqE7uint8_tb"],"bgfx::setViewTransform":[0,3,1,"_CPPv2N4bgfx16setViewTransformE7uint8_tPKvPKv7uint8_tPKv"],"bgfx::shutdown":[0,3,1,"_CPPv2N4bgfx8shutdownEv"],"bgfx::submit":[0,3,1,"_CPPv2N4bgfx6submitE7uint8_t13ProgramHandle7int32_tb"],"bgfx::topologyConvert":[0,3,1,"_CPPv2N4bgfx15topologyConvertEN15TopologyConvert4EnumEPv8uint32_tPKv8uint32_tb"],"bgfx::topologySortTriList":[0,3,1,"_CPPv2N4bgfx19topologySortTriListEN12TopologySort4EnumEPv8uint32_tA3_KfA3_KfPKv8uint32_tPKv8uint32_tb"],"bgfx::touch":[0,3,1,"_CPPv2N4bgfx5touchE7uint8_t"],"bgfx::updateDynamicIndexBuffer":[0,3,1,"_CPPv2N4bgfx24updateDynamicIndexBufferE24DynamicIndexBufferHandle8uint32_tPK6Memory"],"bgfx::updateDynamicVertexBuffer":[0,3,1,"_CPPv2N4bgfx25updateDynamicVertexBufferE25DynamicVertexBufferHandle8uint32_tPK6Memory"],"bgfx::updateTexture2D":[0,3,1,"_CPPv2N4bgfx15updateTexture2DE13TextureHandle7uint8_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory8uint16_t"],"bgfx::updateTexture3D":[0,3,1,"_CPPv2N4bgfx15updateTexture3DE13TextureHandle7uint8_t8uint16_t8uint16_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory"],"bgfx::updateTextureCube":[0,3,1,"_CPPv2N4bgfx17updateTextureCubeE13TextureHandle7uint8_t7uint8_t8uint16_t8uint16_t8uint16_t8uint16_tPK6Memory8uint16_t"],"bgfx::vertexConvert":[0,3,1,"_CPPv2N4bgfx13vertexConvertERK10VertexDeclPvRK10VertexDeclPKv8uint32_t"],"bgfx::vertexPack":[0,3,1,"_CPPv2N4bgfx10vertexPackEA4_KfbN6Attrib4EnumERK10VertexDeclPv8uint32_t"],"bgfx::vertexUnpack":[0,3,1,"_CPPv2N4bgfx12vertexUnpackEA4_fN6Attrib4EnumERK10VertexDeclPKv8uint32_t"],"bgfx::weldVertices":[0,3,1,"_CPPv2N4bgfx12weldVerticesEP8uint16_tRK10VertexDeclPKv8uint16_tf"],BGFX_CAPS_BLEND_INDEPENDENT:[0,0,1,"c.BGFX_CAPS_BLEND_INDEPENDENT"],BGFX_CAPS_COMPUTE:[0,0,1,"c.BGFX_CAPS_COMPUTE"],BGFX_CAPS_DRAW_INDIRECT:[0,0,1,"c.BGFX_CAPS_DRAW_INDIRECT"],BGFX_CAPS_FRAGMENT_DEPTH:[0,0,1,"c.BGFX_CAPS_FRAGMENT_DEPTH"],BGFX_CAPS_FRAGMENT_ORDERING:[0,0,1,"c.BGFX_CAPS_FRAGMENT_ORDERING"],BGFX_CAPS_HIDPI:[0,0,1,"c.BGFX_CAPS_HIDPI"],BGFX_CAPS_HMD:[0,0,1,"c.BGFX_CAPS_HMD"],BGFX_CAPS_INDEX32:[0,0,1,"c.BGFX_CAPS_INDEX32"],BGFX_CAPS_INSTANCING:[0,0,1,"c.BGFX_CAPS_INSTANCING"],BGFX_CAPS_OCCLUSION_QUERY:[0,0,1,"c.BGFX_CAPS_OCCLUSION_QUERY"],BGFX_CAPS_RENDERER_MULTITHREADED:[0,0,1,"c.BGFX_CAPS_RENDERER_MULTITHREADED"],BGFX_CAPS_SWAP_CHAIN:[0,0,1,"c.BGFX_CAPS_SWAP_CHAIN"],BGFX_CAPS_TEXTURE_3D:[0,0,1,"c.BGFX_CAPS_TEXTURE_3D"],BGFX_CAPS_TEXTURE_BLIT:[0,0,1,"c.BGFX_CAPS_TEXTURE_BLIT"],BGFX_CAPS_TEXTURE_COMPARE_ALL:[0,0,1,"c.BGFX_CAPS_TEXTURE_COMPARE_ALL"],BGFX_CAPS_TEXTURE_COMPARE_LEQUAL:[0,0,1,"c.BGFX_CAPS_TEXTURE_COMPARE_LEQUAL"],BGFX_CAPS_TEXTURE_READ_BACK:[0,0,1,"c.BGFX_CAPS_TEXTURE_READ_BACK"],BGFX_CAPS_VERTEX_ATTRIB_HALF:[0,0,1,"c.BGFX_CAPS_VERTEX_ATTRIB_HALF"],BGFX_DEBUG_IFH:[0,0,1,"c.BGFX_DEBUG_IFH"],BGFX_DEBUG_NONE:[0,0,1,"c.BGFX_DEBUG_NONE"],BGFX_DEBUG_STATS:[0,0,1,"c.BGFX_DEBUG_STATS"],BGFX_DEBUG_TEXT:[0,0,1,"c.BGFX_DEBUG_TEXT"],BGFX_DEBUG_WIREFRAME:[0,0,1,"c.BGFX_DEBUG_WIREFRAME"],BGFX_HMD_DEVICE_RESOLUTION:[0,0,1,"c.BGFX_HMD_DEVICE_RESOLUTION"],BGFX_HMD_NONE:[0,0,1,"c.BGFX_HMD_NONE"],BGFX_HMD_RENDERING:[0,0,1,"c.BGFX_HMD_RENDERING"],BGFX_PCI_ID_AMD:[0,0,1,"c.BGFX_PCI_ID_AMD"],BGFX_PCI_ID_INTEL:[0,0,1,"c.BGFX_PCI_ID_INTEL"],BGFX_PCI_ID_NONE:[0,0,1,"c.BGFX_PCI_ID_NONE"],BGFX_PCI_ID_NVIDIA:[0,0,1,"c.BGFX_PCI_ID_NVIDIA"],BGFX_PCI_ID_SOFTWARE_RASTERIZER:[0,0,1,"c.BGFX_PCI_ID_SOFTWARE_RASTERIZER"],BGFX_RESET_CAPTURE:[0,0,1,"c.BGFX_RESET_CAPTURE"],BGFX_RESET_DEPTH_CLAMP:[0,0,1,"c.BGFX_RESET_DEPTH_CLAMP"],BGFX_RESET_FLIP_AFTER_RENDER:[0,0,1,"c.BGFX_RESET_FLIP_AFTER_RENDER"],BGFX_RESET_FLUSH_AFTER_RENDER:[0,0,1,"c.BGFX_RESET_FLUSH_AFTER_RENDER"],BGFX_RESET_FULLSCREEN:[0,0,1,"c.BGFX_RESET_FULLSCREEN"],BGFX_RESET_HIDPI:[0,0,1,"c.BGFX_RESET_HIDPI"],BGFX_RESET_HMD:[0,0,1,"c.BGFX_RESET_HMD"],BGFX_RESET_HMD_DEBUG:[0,0,1,"c.BGFX_RESET_HMD_DEBUG"],BGFX_RESET_HMD_RECENTER:[0,0,1,"c.BGFX_RESET_HMD_RECENTER"],BGFX_RESET_MAXANISOTROPY:[0,0,1,"c.BGFX_RESET_MAXANISOTROPY"],BGFX_RESET_MSAA_X16:[0,0,1,"c.BGFX_RESET_MSAA_X16"],BGFX_RESET_MSAA_X2:[0,0,1,"c.BGFX_RESET_MSAA_X2"],BGFX_RESET_MSAA_X4:[0,0,1,"c.BGFX_RESET_MSAA_X4"],BGFX_RESET_MSAA_X8:[0,0,1,"c.BGFX_RESET_MSAA_X8"],BGFX_RESET_NONE:[0,0,1,"c.BGFX_RESET_NONE"],BGFX_RESET_SRGB_BACKBUFFER:[0,0,1,"c.BGFX_RESET_SRGB_BACKBUFFER"],BGFX_RESET_VSYNC:[0,0,1,"c.BGFX_RESET_VSYNC"],BGFX_STATE_ALPHA_WRITE:[0,0,1,"c.BGFX_STATE_ALPHA_WRITE"],BGFX_STATE_DEFAULT:[0,0,1,"c.BGFX_STATE_DEFAULT"],BGFX_STATE_DEPTH_WRITE:[0,0,1,"c.BGFX_STATE_DEPTH_WRITE"],BGFX_STATE_RGB_WRITE:[0,0,1,"c.BGFX_STATE_RGB_WRITE"],BGFX_STENCIL_TEST_LESS:[0,0,1,"c.BGFX_STENCIL_TEST_LESS"]}},objnames:{"0":["c","macro","C macro"],"1":["cpp","class","C++ class"],"2":["cpp","type","C++ type"],"3":["cpp","function","C++ function"],"4":["cpp","member","C++ member"]},objtypes:{"0":"c:macro","1":"cpp:class","2":"cpp:type","3":"cpp:function","4":"cpp:member"},terms:{"001f":0,"0x000000ff":0,"16x":0,"202d":4,"20by":4,"20distanc":4,"20field":4,"20render":4,"20shape":4,"2450m":2,"2600k":2,"2bpp":0,"2xgtx780":2,"3rd":3,"3rdparti":4,"4250u":2,"4750hq":2,"4770k":2,"4770r":2,"4790k":2,"4_splat":6,"4bpp":0,"6200u":2,"64k":2,"_access":0,"_arglist":0,"_asint":0,"_attach":0,"_attr":0,"_attrib":0,"_bstencil":0,"_cach":0,"_callback":0,"_captur":0,"_code":0,"_convers":0,"_csh":0,"_cubemap":0,"_data":0,"_debug":0,"_decl":0,"_depth":0,"_depthformat":0,"_destdata":0,"_destdecl":0,"_destroyshad":0,"_destroytextur":0,"_deviceid":0,"_dir":0,"_dst":0,"_dstmip":0,"_dstsize":0,"_dstx":0,"_dsty":0,"_dstz":0,"_enabl":0,"_epsilon":0,"_filepath":0,"_firstindex":0,"_flag":0,"_format":0,"_fsh":0,"_fstencil":0,"_handl":0,"_height":0,"_id":0,"_idb":0,"_index":0,"_index32":0,"_indic":0,"_indirecthandl":0,"_info":0,"_input":0,"_inputnorm":0,"_line":0,"_marker":0,"_max":0,"_mem":0,"_mip":0,"_mtx":0,"_name":0,"_normal":0,"_num":0,"_numi":0,"_numindic":0,"_nummip":0,"_numvertic":0,"_numx":0,"_numz":0,"_nwh":0,"_occlusionqueri":0,"_output":0,"_pitch":0,"_po":0,"_preservest":0,"_program":0,"_projl":0,"_projr":0,"_ptr":0,"_ratio":0,"_realloc":0,"_releasefn":0,"_remap":0,"_render":0,"_rgba":0,"_sampler":0,"_side":0,"_size":0,"_skip":0,"_small":0,"_sort":0,"_src":0,"_srcdata":0,"_srcdecl":0,"_srcmip":0,"_srcx":0,"_srcy":0,"_srcz":0,"_stage":0,"_start":0,"_startindex":0,"_startvertex":0,"_state":0,"_stencil":0,"_str":0,"_stride":0,"_textureflag":0,"_tib":0,"_transform":0,"_tvb":0,"_type":0,"_uniform":0,"_userdata":0,"_vendorid":0,"_vertic":0,"_view":0,"_visibl":0,"_vsh":0,"_width":0,"_yflip":0,"byte":0,"case":[0,5],"char":0,"const":0,"default":[0,2,5],"enum":0,"float":[0,6],"fran\u00e7oi":5,"function":[0,4,5,6],"int":[0,5,6],"karad\u017ei\u0107":5,"milo\u0161":5,"new":0,"null":0,"public":[0,3],"return":0,"sk\u00f6ld":5,"static":[0,2],"switch":5,"to\u0161i\u0107":5,"transient":[0,2],"true":[0,2],"void":0,"while":[0,2],a_bitang:0,a_color0:0,a_color1:0,a_indic:0,a_norm:0,a_posit:0,a_tang:0,a_texcoord0:0,a_texcoord1:0,a_texcoord2:0,a_texcoord3:0,a_texcoord4:0,a_texcoord5:0,a_texcoord6:0,a_texcoord7:0,a_weight:0,abl:0,about:[0,2,5],abov:[4,5],access:[0,5,6],activ:1,actual:0,adapt:0,add:[0,5],adjust:[0,2],adreno320:2,adreno:5,advanc:0,advis:4,after:[0,1,5],agnost:[3,5],agre:5,ajohnson23:5,all:[0,1,4,5,6],alloc:0,allocatori:0,allocinstancedatabuff:0,alloctransform:0,alloctransientindexbuff:0,alloctransientvertexbuff:0,allow:[0,5,6],alpha:0,also:5,alwai:0,amd5770:2,amd6800:2,amd:[0,2],amount:0,andr3wmac:5,andr:5,andrew:5,android_ndk_arm:1,android_ndk_mip:1,android_ndk_root:1,android_ndk_x86:1,androideabi:1,androidndk:1,angl:2,ani:[0,1,4,5],anim:5,anisotrop:0,anisotropi:0,anoth:0,ansi:6,antialias:[2,4],antialis:4,anyth:5,apitrac:5,appear:[0,6],appletv:5,appli:0,applic:[0,2,5],appropri:1,apt:1,ara:4,arbitrari:0,arch:2,argument:0,aris:4,arm64:2,arm:[1,2,5],around:5,arrai:0,ascend:0,asm:[2,5],assess:0,asset:3,assum:0,astigmat:4,ati1:0,ati2:0,attach:0,attent:0,attila:5,attilaz:5,attrib:0,attribtyp:0,attribut:[0,6],author:6,auto:5,automat:5,autoselect:0,avoid:0,back:0,backbuff:0,backbufferd:0,backbufferratio:0,backend:[0,3],backfac:0,bagder:4,base:[0,2,4,5,6],bass:5,bc1:0,bc2:0,bc3:0,bc4:0,bc5:0,bc6h:0,bc7:0,becaus:0,befor:0,begin:[0,6],behavior:0,below:1,bernhard:4,better:5,between:[0,6],bgfx:[0,1,2,3,4,5,6],bgfx_alloc:0,bgfx_alloc_instance_data_buff:0,bgfx_alloc_transform:0,bgfx_alloc_transient_index_buff:0,bgfx_alloc_transient_vertex_buff:0,bgfx_attrib_t:0,bgfx_blit:0,bgfx_buffer_allow_res:0,bgfx_buffer_compute_read:0,bgfx_buffer_compute_read_writ:0,bgfx_buffer_compute_writ:0,bgfx_buffer_index32:0,bgfx_buffer_non:0,bgfx_calc_texture_s:0,bgfx_callback_interface_t:0,bgfx_callback_vtbl:0,bgfx_caps_:0,bgfx_caps_blend_independ:0,bgfx_caps_comput:0,bgfx_caps_draw_indirect:0,bgfx_caps_format_texture_2d:0,bgfx_caps_format_texture_2d_emul:0,bgfx_caps_format_texture_2d_srgb:0,bgfx_caps_format_texture_3d:0,bgfx_caps_format_texture_3d_emul:0,bgfx_caps_format_texture_3d_srgb:0,bgfx_caps_format_texture_cub:0,bgfx_caps_format_texture_cube_emul:0,bgfx_caps_format_texture_cube_srgb:0,bgfx_caps_format_texture_framebuff:0,bgfx_caps_format_texture_framebuffer_msaa:0,bgfx_caps_format_texture_imag:0,bgfx_caps_format_texture_msaa:0,bgfx_caps_format_texture_non:0,bgfx_caps_format_texture_vertex:0,bgfx_caps_fragment_depth:0,bgfx_caps_fragment_ord:0,bgfx_caps_gpu_t:0,bgfx_caps_hidpi:0,bgfx_caps_hmd:0,bgfx_caps_index32:0,bgfx_caps_instanc:0,bgfx_caps_occlusion_queri:0,bgfx_caps_renderer_multithread:0,bgfx_caps_swap_chain:0,bgfx_caps_t:0,bgfx_caps_texture_3d:0,bgfx_caps_texture_blit:0,bgfx_caps_texture_compare_al:0,bgfx_caps_texture_compare_lequ:0,bgfx_caps_texture_read_back:0,bgfx_caps_vertex_attrib_half:0,bgfx_check_avail_instance_data_buff:0,bgfx_check_avail_transient_index_buff:0,bgfx_check_avail_transient_vertex_buff:0,bgfx_clear_:0,bgfx_clear_non:0,bgfx_config_:5,bgfx_config_max_bon:0,bgfx_config_max_draw_cal:2,bgfx_config_multithread:0,bgfx_config_multithred:5,bgfx_config_renderer_opengl:5,bgfx_copi:0,bgfx_create_compute_program:0,bgfx_create_dynamic_index_buff:0,bgfx_create_dynamic_index_buffer_mem:0,bgfx_create_dynamic_vertex_buff:0,bgfx_create_dynamic_vertex_buffer_mem:0,bgfx_create_frame_buff:0,bgfx_create_frame_buffer_from_handl:0,bgfx_create_frame_buffer_from_nwh:0,bgfx_create_frame_buffer_sc:0,bgfx_create_index_buff:0,bgfx_create_indirect_buff:0,bgfx_create_occlusion_queri:0,bgfx_create_program:0,bgfx_create_shad:0,bgfx_create_textur:0,bgfx_create_texture_2d:0,bgfx_create_texture_2d_sc:0,bgfx_create_texture_3d:0,bgfx_create_texture_cub:0,bgfx_create_uniform:0,bgfx_create_vertex_buff:0,bgfx_cube_map_:0,bgfx_dbg_text_clear:0,bgfx_dbg_text_printf:0,bgfx_debug_ifh:0,bgfx_debug_non:0,bgfx_debug_stat:0,bgfx_debug_text:0,bgfx_debug_wirefram:0,bgfx_destroy_dynamic_index_buff:0,bgfx_destroy_dynamic_vertex_buff:0,bgfx_destroy_frame_buff:0,bgfx_destroy_index_buff:0,bgfx_destroy_indirect_buff:0,bgfx_destroy_occlusion_queri:0,bgfx_destroy_program:0,bgfx_destroy_shad:0,bgfx_destroy_textur:0,bgfx_destroy_uniform:0,bgfx_destroy_vertex_buff:0,bgfx_discard:0,bgfx_dispatch:0,bgfx_dispatch_indirect:0,bgfx_frame:0,bgfx_get_cap:0,bgfx_get_hmd:0,bgfx_get_internal_data:0,bgfx_get_renderer_typ:0,bgfx_get_result:0,bgfx_get_shader_uniform:0,bgfx_hmd_device_resolut:0,bgfx_hmd_eye_t:0,bgfx_hmd_none:0,bgfx_hmd_render:0,bgfx_hmd_t:0,bgfx_init:0,bgfx_internal_data_t:0,bgfx_invalid_handl:0,bgfx_make_ref:0,bgfx_make_ref_releas:0,bgfx_memory_t:0,bgfx_occlusion_query_result_t:0,bgfx_override_internal_textur:0,bgfx_override_internal_texture_ptr:0,bgfx_path:2,bgfx_pci_id_amd:0,bgfx_pci_id_intel:0,bgfx_pci_id_non:0,bgfx_pci_id_nvidia:0,bgfx_pci_id_software_raster:0,bgfx_platform_data_t:0,bgfx_read_frame_buff:0,bgfx_read_textur:0,bgfx_render_frame_t:0,bgfx_renderer_type_t:0,bgfx_reset:0,bgfx_reset_:0,bgfx_reset_captur:0,bgfx_reset_depth_clamp:0,bgfx_reset_flip_after_rend:0,bgfx_reset_flush_after_rend:0,bgfx_reset_fullscreen:0,bgfx_reset_hidpi:0,bgfx_reset_hmd:0,bgfx_reset_hmd_debug:0,bgfx_reset_hmd_recent:0,bgfx_reset_maxanisotropi:0,bgfx_reset_msaa_x16:0,bgfx_reset_msaa_x2:0,bgfx_reset_msaa_x4:0,bgfx_reset_msaa_x8:0,bgfx_reset_msaa_x:0,bgfx_reset_non:0,bgfx_reset_srgb_backbuff:0,bgfx_reset_vsync:0,bgfx_save_screen_shot:0,bgfx_set_compute_dynamic_index_buff:0,bgfx_set_compute_dynamic_vertex_buff:0,bgfx_set_compute_index_buff:0,bgfx_set_compute_indirect_buff:0,bgfx_set_compute_vertex_buff:0,bgfx_set_condit:0,bgfx_set_debug:0,bgfx_set_dynamic_index_buff:0,bgfx_set_dynamic_vertex_buff:0,bgfx_set_imag:0,bgfx_set_image_from_frame_buff:0,bgfx_set_index_buff:0,bgfx_set_instance_data_buff:0,bgfx_set_instance_data_from_dynamic_vertex_buff:0,bgfx_set_instance_data_from_vertex_buff:0,bgfx_set_mark:0,bgfx_set_palette_color:0,bgfx_set_platform_data:0,bgfx_set_scissor:0,bgfx_set_scissor_cach:0,bgfx_set_stat:0,bgfx_set_stencil:0,bgfx_set_textur:0,bgfx_set_texture_from_frame_buff:0,bgfx_set_transform:0,bgfx_set_transform_cach:0,bgfx_set_transient_index_buff:0,bgfx_set_transient_vertex_buff:0,bgfx_set_vertex_buff:0,bgfx_set_view_clear:0,bgfx_set_view_clear_mrt:0,bgfx_set_view_frame_buff:0,bgfx_set_view_nam:0,bgfx_set_view_rect:0,bgfx_set_view_rect_auto:0,bgfx_set_view_remap:0,bgfx_set_view_scissor:0,bgfx_set_view_seq:0,bgfx_set_view_transform:0,bgfx_set_view_transform_stereo:0,bgfx_shader:0,bgfx_shutdown:0,bgfx_state_alpha_ref:0,bgfx_state_alpha_writ:0,bgfx_state_blend_:0,bgfx_state_blend_equation_:0,bgfx_state_blend_equation_add:0,bgfx_state_blend_factor:0,bgfx_state_blend_func:0,bgfx_state_blend_inv_factor:0,bgfx_state_cull_:0,bgfx_state_default:0,bgfx_state_depth_test_:0,bgfx_state_depth_writ:0,bgfx_state_msaa:0,bgfx_state_point_s:0,bgfx_state_pt_:0,bgfx_state_rgb_writ:0,bgfx_stats_t:0,bgfx_stencil_non:0,bgfx_stencil_test_less:0,bgfx_submit:0,bgfx_submit_eye_first:0,bgfx_submit_indirect:0,bgfx_submit_occlusion_queri:0,bgfx_texture_:0,bgfx_texture_blit_dst:0,bgfx_texture_format_t:0,bgfx_texture_non:0,bgfx_texture_read_back:0,bgfx_texture_u_clamp:0,bgfx_texture_v_clamp:0,bgfx_topology_convert_t:0,bgfx_topology_sort_t:0,bgfx_topology_sort_tri_list:0,bgfx_uniform_type_t:0,bgfx_update_dynamic_index_buff:0,bgfx_update_dynamic_vertex_buff:0,bgfx_update_texture_2d:0,bgfx_update_texture_3d:0,bgfx_update_texture_cub:0,bgfx_vertex_convert:0,bgfx_vertex_decl_add:0,bgfx_vertex_decl_begin:0,bgfx_vertex_decl_skip:0,bgfx_vertex_decl_t:0,bgfx_vertex_pack:0,bgfx_vertex_unpack:0,bgfx_view_non:0,bgfx_view_stereo:0,bgfx_weld_vertic:0,bgfxplatform:5,bgra8:0,bgra:0,bin:[1,2],binari:[0,1,2,4],bind:5,bit:0,bitang:0,bitbucket:4,bkaradz:[0,1,3,4,5],bleed:4,blend:[0,2],blender:4,blendish:3,bloat:4,block:0,bodi:2,bool:[0,6],both:0,bottleneck:0,bottom:0,branimir:[4,5],bring:[3,5],bsd:3,bucket:[0,5],bug:5,built:1,bunni:4,busi:4,c99:0,cach:[0,2,3],cache_read:0,cache_read_s:0,cache_writ:0,cacheread:0,cachereads:0,cachewrit:0,calctextures:0,calcul:0,calibr:0,call:[0,1,2,5],callback:0,callbacki:0,can:[0,1,2,5,6],cannot:0,capac:0,captur:[0,2,5],capture_begin:0,capture_end:0,capture_fram:0,capturebegin:0,captureend:0,capturefram:0,care:5,carni:5,caus:4,certain:[5,6],chang:[0,2,5],chapter:4,charl:5,cheap:4,check:[1,5],checkavailinstancedatabuff:0,checkavailtransientindexbuff:0,checkavailtransientvertexbuff:0,cherlin:5,choic:5,choos:5,chrnonolog:5,chrome33:2,chrome34:2,chrome41:2,chrome:2,ci20:[2,5],clamp:0,clang:[2,5],claus:3,clear:0,click:5,clip:0,clockwis:0,clone:1,code:[0,4,5],codexl:5,colbi:5,collin:5,color0:0,color1:0,color:0,com:[1,3,4,5],command:[0,1,2],common:4,commonli:1,compar:0,comparison:0,compil:[1,2,3,4],complex:0,compon:0,compress:3,concaten:0,config:[2,5],configur:[1,5],conjunct:0,conorstok:4,consequenti:4,consum:0,contact:3,contain:0,content:0,context:[0,5],continu:0,contour:4,contract:4,contribut:5,contributor:[3,4],convers:0,convert:[0,6],copi:0,copyright:4,core:1,coreutil:1,corner:0,correctli:5,correspond:0,count:0,counter:0,cowboi:4,cpp:1,cpu:[0,2],cputimebegin:0,cputimeend:0,cputimerfreq:0,creat:[0,5],createdynamicindexbuff:0,createdynamicvertexbuff:0,createframebuff:0,createindexbuff:0,createindirectbuff:0,createocclusionqueri:0,createprogram:0,createshad:0,createtextur:0,createtexture2d:0,createtexture3d:0,createtexturecub:0,createuniform:0,createvertexbuff:0,creation:0,creator:[2,5],cross:[3,5,6],crt:0,cube:0,cubemap:0,cull:0,current:[0,2],custom:[0,1,3],d0s8:0,d16:0,d16f:0,d24:0,d24f:0,d24s8:0,d32:0,d32f:0,d3d11:6,d3d9:6,d3d:0,dafont:4,damag:4,daniel:5,dario:5,dariomanesku:5,dark:5,data:[0,2,4],dbgtextclear:0,dbgtextprintf:0,debian8:2,debug64:1,debugcheck:0,debugg:[0,3],declar:0,decod:[0,5],def:6,defin:[5,6],delet:1,depend:0,deploi:1,deploy:5,depth:0,descript:5,desir:0,desktop:5,destin:0,destroi:0,destroydynamicindexbuff:0,destroydynamicvertexbuff:0,destroyframebuff:0,destroyindexbuff:0,destroyindirectbuff:0,destroyocclusionqueri:0,destroyprogram:0,destroyshad:0,destroytextur:0,destroyuniform:0,destroyvertexbuff:0,detail:[1,5],detect:5,dev:1,develop:1,devic:[0,1,5],deviceheight:0,deviceid:0,devicewidth:0,dialog:1,differ:[0,1,5,6],dim:2,direct3d11:0,direct3d12:0,direct3d9:0,direct3d:[0,5],direct:[0,4],directionbacktofrontavg:0,directionbacktofrontmax:0,directionbacktofrontmin:0,directionfronttobackavg:0,directionfronttobackmax:0,directionfronttobackmin:0,directori:[1,2,4,5],directx9:5,disabl:[0,2,5],discard:0,disclaim:4,dissector:5,distanc:[2,4],distancebacktofrontavg:0,distancebacktofrontmax:0,distancebacktofrontmin:0,distancefronttobackavg:0,distancefronttobackmax:0,distancefronttobackmin:0,distribut:[4,5],dll:5,doe:0,doesn:[0,5],domain:3,don:[0,2,5],doubl:0,down:0,download:[1,2,5],drawback:6,driver:0,droid:4,drop:5,duangl:4,due:1,durat:0,dure:5,dx11:[2,5],dx12:5,dx9:[2,5],dxt1:0,dxt3:0,dxt5:0,dynam:0,dynamicindexbufferhandl:0,dynamicvertexbufferhandl:0,each:[0,1,5],eas:1,ebook:4,eclips:5,eclipsecon:5,edg:0,edit:1,edtaa3:3,effect:0,effici:0,egl:5,element:0,elit:4,embed:2,emoon:5,empti:0,emscripten:5,emul:0,enabl:[0,1,5],end:0,engin:[3,5],eniron:1,enleeten:5,enni:4,enough:0,enter:1,entri:5,enumer:0,enviro:1,equal:0,equat:[0,4],equival:0,error:[0,5],es2:2,etc1:0,etc2:[0,5],etc2a1:0,etc2a:0,etc:[1,3],euclidean:4,even:4,event:4,everi:5,everyon:5,exampl:[0,1],excess:5,execut:0,exemplari:4,exist:[0,5],expect:0,express:4,extern:0,f11:5,face:0,factor:0,fail:0,fallback:5,fals:0,fast:0,fatal:0,fcpp:3,ff27:2,ff28:2,ff36:2,ff37:2,field:[0,2,4],file:[0,1,4,6],fill:0,film:1,filter:0,find:5,finish:0,fip:[1,5],fire:4,firefox:2,first:0,fit:[0,4],five:4,fiveminut:4,fix:[0,5],flavor:6,flip:0,floooh:[1,5],flush:0,follow:[1,2,4],fontawesom:4,fontfabr:4,fonts2u:4,fontspac:4,fontsquirrel:4,form:4,format:[0,6],forsyth:3,found:[0,5],fov:0,fragment:0,frame_r:2,framebuff:0,framebufferhandl:0,framework:[3,5],free:4,freebsd:5,freed:0,freetyp:3,frequenc:0,frexx:4,from:[0,1,5,6],front:0,fullscreen:5,g6430:2,gale:5,galleri:4,gallium:2,game:1,gameangst:4,garett:5,gcc:[2,5],geni:[1,5],geometri:[0,2,3],geometryc:3,get:0,getcap:0,gethmd:0,getinternaldata:0,getoffset:0,getrenderertyp:0,getresult:0,getshaderuniform:0,getsiz:0,getstat:0,getstrid:0,gfdl:4,git:1,github:[0,1,3,4,5],given:1,gl2:2,gle:5,glfw:3,global:2,glsl:3,glue:1,gnuwin32:1,good:4,googl:1,gpa:5,gpu:[0,2,5],gputimebegin:0,gputimeend:0,gputimerfreq:0,grace:4,grai:5,graphic:[0,2,3,4,5],group:0,gtbass:5,gtx260:2,gtx560ti:2,gtx650ti:2,gtx970:2,gui:[0,5],guillaum:5,gutenberg:4,half:0,handl:[0,5],hardwar:[0,5],haskel:5,have:[0,2,5],hd3000:2,hd5000:2,hd5200:2,hd8330:2,height:0,helloworlddebug:2,helper:6,herzog:4,hidpi:0,high:[4,5],highlevel:1,hlsl:6,hmd:[0,1,3],holder:4,holm:4,homogeneousdepth:0,how:5,howev:4,htm:1,html:[0,1],http:[0,1,3,4,5],icon:5,ident:0,ignor:0,illumin:2,imgui:3,immedi:4,immut:0,implement:[0,2,5],impli:4,improv:5,inabl:1,incident:4,includ:[1,4,5],increas:2,independ:[0,2],indexbuffercompress:4,indexbufferhandl:0,indic:0,indirectbufferhandl:0,infinit:0,info:[0,6],init:[0,5],injectionlist:5,input:[0,5,6],insid:[0,1,5],instal:1,instancedatabuff:0,instead:[0,1,6],institut:4,insuffici:0,int16:0,int1:0,int32_t:0,int64_t:0,intel:[0,2,5],intelgpa:3,interact:5,interfac:[0,4],intermedi:1,intern:[0,3],internaldata:0,interop:0,interrupt:4,invalid:0,invers:0,invert:0,invis:0,involv:3,ios6:2,ios7:2,ipad:[2,5],iphon:[2,5],ipod:2,issu:[0,5],item:0,jame:5,james4k:5,jason:5,java:5,jcherlin:5,jean:5,jeremi:5,jeremieroi:5,jit:2,jnadro:5,johan:5,johnson:5,joseph:5,jourdan:5,julian:4,just:[0,5],kabini:2,kai:5,karadz:4,kick:0,klein:5,known:0,kocsi:5,kondrak:5,krzysztof:5,ktx:[0,6],l33t:5,lab:5,laboratori:4,languag:3,larg:0,last:0,latc1:0,latc2:0,launch:5,layout:2,leak:0,least:0,left:0,less:0,level:[0,5],liabil:4,liabl:4,libgl1:1,libiconv:1,libintl:1,librari:[0,1,2,3],libx11:1,licens:3,light:[2,4],lighttransport:4,lighttransportequ:4,like:6,limit:[2,4],line:[0,1,2],linear:0,linestriptolinelist:0,list:[0,4,5],llvmpipe:2,load:[2,5],loat:0,locat:5,loss:4,low:5,lua:5,mac:5,macro:[0,6],made:2,mag:0,main:[0,5,6],maintain:[0,2],make:[0,1,5],makefil:6,makeref:0,mali:[2,5],manesku:5,manual:1,map:[0,2,4],marker:0,master:4,mat3:0,mat4:0,match:[0,5],materi:4,matric:[0,6],matrix:0,max:0,maxdrawcal:0,maxfbattach:0,maximimum:2,maximum:0,maxtextures:0,maxview:0,mccrari:5,mean:5,mechan:0,member:0,memononen:4,memori:0,merchant:4,mesa:[1,2,4],meshula:1,messag:0,met:4,metal:[0,5],mia:4,might:0,mike:5,mikepopoloski:5,milostos:5,min:0,mini:2,minim:4,minut:4,mip:[0,2,5],mipsel:1,mirror:0,mit:3,mkvfx:1,mobil:[4,5],mode:[0,2,4,5],model:[0,4],modif:[0,4],moment:0,monitor:5,moon:5,more:[0,1,5,6],most:[0,2],mous:2,mrt:2,msaa:0,mul:6,multi:0,multipl:[0,2,5],multipli:6,multithread:[0,5],must:[0,1,4,5,6],nacl:[1,2],nacl_sdk_root:1,nadro:5,name:[0,5],nativ:0,ndc:0,ndk:1,ndt:0,necessari:[0,1,5],necessarili:5,need:1,neg:0,neglig:4,net:1,next:0,nexu:2,nnnce:0,nodrev:[1,5],non:0,none:0,nor:5,noresult:0,norm:0,normal:[0,4],normal_map_example_with_scene_and_result:4,notat:0,noth:4,notic:[0,4],nsight:5,num:0,number:[0,2],numgpu:0,nvidia:0,nwh:0,obj:[4,6],object:0,obtain:0,obvious:5,occlusionqueryhandl:0,occlusionqueryresult:0,occur:0,ocharl:5,ocornut:[4,5],oculussdk:1,off:[0,2],offici:5,offset:0,oldschool:2,oliv:5,onc:0,onli:[0,1,5,6],open:[1,3,5],opengl:[0,2,5],openglinsight:4,openglinsightscod:4,oper:0,optim:[0,3],optimis:3,option:[1,2,5],orb:4,order:[0,2,3],ordinari:0,org:4,origin:0,originbottomleft:0,osx:[1,2,5],other:[0,1,3,4],otherwis:[0,4],oui:4,out:[4,6],output:[0,6],outsid:0,overal:6,overrid:0,overrideintern:0,overview:3,ovr:1,ovr_dir:1,own:[3,5],p0nce:5,pack:[0,1,4],packag:[0,1],page:3,paint:2,palett:0,paramet:0,pars:0,parti:3,particular:4,pass:[0,5],path:[0,1,5],pci:0,pdf:5,per:[0,2],perfhud:5,perform:0,perfstudio:5,permiss:[3,5],permit:4,persist:0,piolat:5,pisa:4,pitch:0,place:5,platformdata:0,pnacl:[1,2,5],png:[4,6],point:0,pointer:0,popoloski:5,port:[0,5],posit:0,possibl:[0,4,5],post:0,powervr:[2,5],ppapi:5,prebuilt:1,preciss:6,predefin:0,prefer:[0,2,5],preprocessor:[4,5,6],present:5,preserv:0,press:5,previou:0,previous:0,primari:0,primit:0,print:0,printf:0,pro:2,probe:4,procur:4,profil:[0,1,3],profit:4,programat:2,programhandl:0,project:[0,1,3],project_dir:1,provid:[0,4,5,6],ptc12:0,ptc12a:0,ptc14:0,ptc14a:0,ptc22:0,ptc24:0,purpos:4,pvr:[0,2,6],pvrtc1:[0,5],pvrtc2:0,python:[1,5],q8200:2,qualcomm:2,quaternion:0,questor:5,quickli:0,r11g11b10f:0,r16:0,r16f:0,r16i:0,r16u:0,r32f:0,r32i:0,r32u:0,r5g6b5:0,r8i:0,r8u:0,rang:0,raspberrypi:[2,5],raspbian:2,raster:0,rate:2,ratio:0,read:0,readback:2,readtextur:0,rectangl:0,redistribut:4,referencend:0,reflect:2,region:0,regular:6,rel:0,releas:[0,1],release32:1,release64:1,releasefn:0,remap:0,remark:0,remov:0,renderdoc:3,renderercontexti:5,renderertyp:0,renderfram:0,reorder:0,repeat:0,report:5,repositori:[1,3,4],repres:0,reproduc:4,request:0,requir:[0,2,4,5],reserv:[0,4],resiz:0,resolut:[0,4],respect:0,result:[0,1,5],retain:4,retriev:0,reus:0,rg16:0,rg16f:0,rg16i:0,rg16u:0,rg32f:0,rg32i:0,rg32u:0,rg8:0,rg8i:0,rg8u:0,rgb10a2:0,rgb5a1:0,rgb8:0,rgb8a1:0,rgb8i:0,rgb8u:0,rgb9e5f:0,rgb:0,rgba16:0,rgba16f:0,rgba16i:0,rgba16u:0,rgba32f:0,rgba32i:0,rgba32u:0,rgba4:0,rgba8:0,rgba8i:0,rgba8u:0,rgba:0,rhoot:5,richard:5,richardgal:5,right:[0,4,5],roi:5,rotat:0,rule:[0,5],run:[1,2],runn:5,runtim:[1,2,5],ruritania:4,rust:5,safari7:2,safe:[0,1],same:0,sampl:0,sampler2d:6,sampler:0,san:4,sane:5,savescreenshot:0,scheme:1,screen:[0,2],screen_shot:0,screenshot:0,scribbl:4,sdf:3,sdk:[1,5],sdl2:5,sdl:3,sdl_createwindow:5,sdl_window:5,sdlsetwindow:5,see:[0,1,5,6],select:[0,1],semant:[0,6],sens:5,separ:0,sequenti:[0,5],servic:4,set:[0,1,5],setbuff:0,setclearcolor:0,setcondit:0,setdebug:0,setimag:0,setindexbuff:0,setinstancedatabuff:0,setmark:0,setpalettecolor:0,setplatformdata:0,setscissor:0,setstat:0,setstencil:0,settextur:0,settransform:0,setup:0,setvertexbuff:0,setviewclear:0,setviewframebuff:0,setviewnam:0,setviewrect:0,setviewremap:0,setviewscissor:0,setviewseq:[0,5],setviewtransform:0,setx:1,sgx535:2,sgx540:2,sgx543:2,shade:2,shaderc:[3,5],shaderhandl:0,shadow:2,shall:4,sherlock:4,shot:[0,2],should:[0,2,5],show:2,side:[0,5],signika:4,similar:5,simpl:0,simplifi:6,simul:2,sinc:5,singl:[1,2,5],singlethread:0,size:[0,2],skip:0,slasinski:5,slide:5,sln:1,small:[2,4],softwar:[0,4],solut:1,some:[0,6],sometim:5,sort:[0,5],sourc:0,sourceforg:1,space:0,special:[4,5],specifi:0,spent:0,src:[1,5],srgb:0,stage:0,stanford:4,stanlo:5,start:0,stat:0,statu:0,stb:3,steamlink:5,step:1,stereo:0,store:0,stream:[0,5],stress:2,strict:4,stride:0,strip:0,struct:0,structur:[0,1],stuart:5,stuartcarni:5,stub:5,studio:1,style:[0,2,3,5],submiss:[0,5],substitut:4,success:0,sudo:1,support:[0,1,3],sure:0,swap:0,sweep:4,swift:5,swiftshad:2,sync:0,syntax:6,t604:2,tabl:0,take:2,tangent:0,target:[0,1,2,5],teamciti:5,techniqu:6,tegra3:2,term:5,termin:0,test:0,texcoord0:0,texcoord1:0,texcoord2:0,texcoord3:0,texcoord4:0,texcoord5:0,texcoord6:0,texcoord7:0,texturec:3,textureformat:0,texturehandl:0,textureinfo:0,texturev:3,tga:6,than:5,thei:5,theme:4,theori:4,thi:[0,2,4,5,6],thread:0,thru:5,time:[0,1,5],timer:0,todo:3,token:6,toler:0,toni:5,toolchain:1,top:0,topolog:0,topologyconvert:0,topologysort:0,topologysorttrilist:0,tort:4,touch:0,tr1:1,trace:0,trace_varg:0,tracevarg:0,trai:5,transientindexbuff:0,transientvertexbuff:0,transit:2,translat:0,transpar:2,transport:4,tree:4,triangl:[0,3],trilistflipwind:0,trilisttolinelist:0,trim:0,tristrip:0,tristriptotrilist:0,truncat:0,turbosquid:4,turn:[0,2],twitter:5,two:0,txt:5,type:0,typograph:4,u_alpharef:0,u_invproj:0,u_invview:0,u_invviewproj:0,u_model:0,u_modelview:0,u_modelviewproj:0,u_proj:0,u_view:0,u_viewproj:0,u_viewrect:0,u_viewtexel:0,uffizi:4,uint16_max:0,uint16_t:0,uint32_max:0,uint32_t:0,uint64_t:0,uint8:0,uint8_max:0,uint8_t:0,uintptr_t:0,undef:0,under:[3,5],underli:0,understand:0,undesir:5,uniformhandl:0,uniformtyp:0,uniqu:0,unit:0,uniti:4,univers:4,unknown:0,unknowndepth:0,unlik:0,unorm:0,unpack:0,unrecover:0,unset:0,until:0,unus:0,updatedynamicindexbuff:0,updatedynamicvertexbuff:0,updatetexture2d:0,updatetexture3d:0,updatetexturecub:0,usag:0,user:[0,1,4],usual:5,util:1,va_list:0,va_start:0,valid:0,valu:[0,5,6],vari:6,variabl:[0,1],variou:[1,2,5],vec2:6,vec4:0,vector:[0,2,4,6],vendor:0,vendorid:0,verdon:5,vertexbufferhandl:0,vertexconvert:0,vertexdecl:0,vertexpack:0,vertexunpack:0,vertic:0,vfx:1,via:[0,2],video:2,viewer:3,viewoffset:0,virtual:0,visibl:0,visitor:4,vista:5,visual:[1,3],vogl:[4,5],volum:2,vs2008:[1,2,5],vs2012:[2,5],vs2013:2,vs2015:[1,2],vsync:2,vulkan:[0,5],wai:[0,4,5],wait:0,waitrend:0,waitsubmit:0,warn:0,warranti:4,wavefront:6,webgl:[2,5],weight:[0,2],weissflog:5,welcom:5,weld:0,weldvertic:0,well:4,were:[0,2],what:[2,3],when:[0,2,5,6],where:[0,5],whether:4,which:0,who:1,width:0,wiki:4,wikimedia:4,win7:2,win:[2,5],wind:0,window:0,windows7:2,wine:2,winphon:5,winphone81:1,wip:5,wirefram:0,without:4,won:[0,5],work:[1,5],wrap:0,wrapper:1,write:[0,5],written:[0,1],www:4,x11proto:1,x64:[2,5],x86:[1,2,5],x86_64:1,xcode4:1,xcworkspac:1,xperia:2,yet:0,you:[0,1,2,5],your:[1,2,3,5],zlib:3},titles:["API Reference","Building","Examples","Documentation","License","Overview","Tools"],titleterms:{"30hz":2,"3rd":4,"60hz":2,"public":4,altern:1,amalgam:1,android:1,api:0,asset:4,avail:0,backend:5,blendish:4,blit:0,browser:2,bsd:4,buffer:[0,4],build:[1,6],bump:2,c99:2,cach:4,callback:2,cap:0,capabl:0,claus:4,client:1,compil:[5,6],compress:4,comput:0,condit:0,contact:5,content:3,contributor:5,cube:2,custom:5,debug:[0,5],debugdraw:2,debugg:5,defer:2,depend:1,dispatch:0,displai:0,document:3,domain:4,draw:0,drawstress:2,edtaa3:4,etc:5,exampl:2,fcpp:4,featur:0,flag:0,font:2,fontsdf:2,forsyth:4,frame:0,freetyp:4,gener:[0,1],geometri:6,geometryc:6,get:[1,5],glfw:5,glsl:4,hdr:2,head:0,helloworld:2,hmd:5,ibl:2,imag:0,imgui:4,index:[0,4],indirect:0,inform:0,initi:0,instanc:[0,2],integr:1,intelgpa:5,intern:5,involv:5,languag:5,librari:4,licens:4,linux:1,lod:2,mesh:2,metabal:2,miscellan:0,mit:4,mount:0,nanovg:[2,4],nativ:1,nbodi:2,occlus:[0,2],oculusvr:1,oit:2,optim:4,optimis:4,order:4,other:5,overview:5,page:5,parti:4,phone:1,pick:2,platform:[0,5],prerequisit:1,profil:5,program:0,project:5,queri:0,quick:1,raymarch:2,refer:0,render:[0,5],renderdoc:5,repositori:5,reset:0,resourc:0,rsm:2,scissor:0,sdf:4,sdl:5,shader:[0,6],shaderc:6,shadowmap:2,shadowvolum:2,shutdown:0,simpl:2,sourc:1,specif:0,start:1,state:0,statist:0,stb:4,stencil:[0,2],submit:0,support:5,system:1,terrain:2,test:2,text:0,textur:[0,6],texturec:6,texturev:6,todo:5,tool:[1,6],transform:0,triangl:4,uniform:0,updat:[0,2],vectordisplai:2,vertex:[0,4],view:0,viewer:6,visual:5,what:5,window:[1,2],winrt:1,wirefram:2,xcode:1,zlib:4}}) \ No newline at end of file