Reland Fixed compiler warning C4267 'conversion from 'size_t' to 'type', possible loss of data'
Additional warnings found with more testing and added C4267 warning disable only for angle_libpng
BUG=angleproject:1120
Change-Id: Ic403dcff5a8018056fa51a8c408e64207f3362eb
Reviewed-on: https://chromium-review.googlesource.com/293028
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Geoff Lang <geofflang@chromium.org>
Tested-by: Geoff Lang <geofflang@chromium.org>
diff --git a/src/tests/gl_tests/ProgramBinaryTest.cpp b/src/tests/gl_tests/ProgramBinaryTest.cpp
index 6bd63e6..cd8e0b3 100644
--- a/src/tests/gl_tests/ProgramBinaryTest.cpp
+++ b/src/tests/gl_tests/ProgramBinaryTest.cpp
@@ -138,7 +138,8 @@
if (infoLogLength > 0)
{
std::vector<GLchar> infoLog(infoLogLength);
- glGetProgramInfoLog(program2, infoLog.size(), NULL, &infoLog[0]);
+ glGetProgramInfoLog(program2, static_cast<GLsizei>(infoLog.size()), NULL,
+ &infoLog[0]);
FAIL() << "program link failed: " << &infoLog[0];
}
else