Updated docs.

This commit is contained in:
Branimir Karadžić 2017-05-07 22:09:11 -07:00
parent c10e25468f
commit d225a1d6f3
5 changed files with 8 additions and 26 deletions

View File

@ -2861,8 +2861,6 @@ otherwise prefer <cite>bgfx::setViewScissor</cite>.</p>
</ul>
</p>
</li>
<li><code class="first docutils literal"><span class="pre">_flags</span></code> - <p>Texture sampler filtering flags. UINT32_MAX use the sampler filtering mode set by texture.</p>
</li>
</ul>
</dd>
</dl>
@ -4560,8 +4558,8 @@ otherwise prefer <cite>bgfx::setViewScissor</cite>.</p>
<dd></dd></dl>
<dl class="member">
<dt id="_CPPv2N4bgfx13TextureFormat10R11G11B10FE">
<span id="bgfx::TextureFormat::R11G11B10F"></span><span class="target" id="bgfxstructbgfx_1_1_texture_format_1a4fa5bcce97c848cf091d954362e501e6aadba44b102107a20a1d10e4225c7483e"></span><code class="descname">R11G11B10F</code><a class="headerlink" href="#_CPPv2N4bgfx13TextureFormat10R11G11B10FE" title="Permalink to this definition"></a></dt>
<dt id="_CPPv2N4bgfx13TextureFormat8RG11B10FE">
<span id="bgfx::TextureFormat::RG11B10F"></span><span class="target" id="bgfxstructbgfx_1_1_texture_format_1a4fa5bcce97c848cf091d954362e501e6a41ac710aca293e8831029481b9636a8f"></span><code class="descname">RG11B10F</code><a class="headerlink" href="#_CPPv2N4bgfx13TextureFormat8RG11B10FE" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="member">

View File

@ -1105,10 +1105,6 @@
</dt>
<dt><a href="bgfx.html#_CPPv2N4bgfx13TextureFormat10R11G11B10FE">bgfx::TextureFormat::R11G11B10F (C++ class)</a>
</dt>
<dt><a href="bgfx.html#_CPPv2N4bgfx13TextureFormat3R16E">bgfx::TextureFormat::R16 (C++ class)</a>
</dt>
@ -1161,6 +1157,10 @@
</dt>
<dt><a href="bgfx.html#_CPPv2N4bgfx13TextureFormat8RG11B10FE">bgfx::TextureFormat::RG11B10F (C++ class)</a>
</dt>
<dt><a href="bgfx.html#_CPPv2N4bgfx13TextureFormat4RG16E">bgfx::TextureFormat::RG16 (C++ class)</a>
</dt>

Binary file not shown.

View File

@ -460,23 +460,7 @@ in GPA directory and add <code class="docutils literal"><span class="pre">exampl
windowing libraries. The main requirement is that windowing library
provides access to native window handle that&#8217;s used to create Direct3D
device or OpenGL context.</p>
<p>Using bgfx with SDL example:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="c1">#include &lt;SDL.h&gt;</span>
<span class="c1">#include &lt;bgfx/platform.h&gt; // it must be included after SDL to enable SDL</span>
<span class="o">//</span> <span class="n">integration</span> <span class="n">code</span> <span class="n">path</span><span class="o">.</span>
<span class="c1">#include &lt;bgfx/bgfx.h&gt;</span>
<span class="o">...</span>
<span class="nb">int</span> <span class="n">main</span><span class="p">(</span><span class="o">...</span>
<span class="p">{</span>
<span class="n">SDL_window</span><span class="o">*</span> <span class="n">window</span> <span class="o">=</span> <span class="n">SDL_CreateWindow</span><span class="p">(</span><span class="o">...</span>
<span class="n">bgfx</span><span class="p">::</span><span class="n">sdlSetWindow</span><span class="p">(</span><span class="n">window</span><span class="p">);</span>
<span class="o">...</span>
<span class="n">bgfx</span><span class="p">::</span><span class="n">init</span><span class="p">();</span>
</pre></div>
</div>
<p>For more info see: <a class="reference internal" href="bgfx.html"><span class="doc">API Reference</span></a>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">You can use <code class="docutils literal"><span class="pre">--with-sdl</span></code> when runnning GENie to enable SDL2 integration with examples:

File diff suppressed because one or more lines are too long