mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Merge pull request #323 from mmicko/master
Fix for array-bounds in renderer_d3d9.cpp
This commit is contained in:
commit
90b141c02e
1 changed files with 1 additions and 1 deletions
|
@ -1732,7 +1732,7 @@ namespace bgfx { namespace d3d9
|
|||
UniformRegistry m_uniformReg;
|
||||
void* m_uniforms[BGFX_CONFIG_MAX_UNIFORMS];
|
||||
|
||||
uint32_t m_samplerFlags[BGFX_CONFIG_MAX_TEXTURE_SAMPLERS][1];
|
||||
uint32_t m_samplerFlags[BGFX_CONFIG_MAX_TEXTURE_SAMPLERS][2];
|
||||
|
||||
TextureD3D9* m_updateTexture;
|
||||
uint8_t* m_updateTextureBits;
|
||||
|
|
Loading…
Reference in a new issue