Commit 25b5f1d1 by apatrick@chromium.org

Fix warning as error in Renderer.cpp.

parent 4e4b1967
...@@ -47,7 +47,7 @@ bool Renderer::initializeCompiler() ...@@ -47,7 +47,7 @@ bool Renderer::initializeCompiler()
// Find a D3DCompiler module that had already been loaded based on a predefined list of versions. // Find a D3DCompiler module that had already been loaded based on a predefined list of versions.
static TCHAR* d3dCompilerNames[] = ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES; static TCHAR* d3dCompilerNames[] = ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES;
for (int i = 0; i < ArraySize(d3dCompilerNames); ++i) for (size_t i = 0; i < ArraySize(d3dCompilerNames); ++i)
{ {
if (GetModuleHandleEx(0, d3dCompilerNames[i], &mD3dCompilerModule)) if (GetModuleHandleEx(0, d3dCompilerNames[i], &mD3dCompilerModule))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment