Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ void ClearTest::LogFail(bool use_sub_data, glw::GLenum internalformat, const T *
{
std::stringstream number;

number << data[i];
number << (GLint)data[i];

the_log.append(number.str());

Expand All @@ -810,7 +810,7 @@ void ClearTest::LogFail(bool use_sub_data, glw::GLenum internalformat, const T *
{
std::stringstream number;

number << reference[i];
number << (GLint)reference[i];

the_log.append(number.str());

Expand Down