Skip to content

Commit

Permalink
Merge pull request #10154 from tamland/fix_return_type
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins4kodi committed Jul 22, 2016
2 parents 17ec7d6 + 35a26ec commit 6638834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xbmc/cores/VideoPlayer/VideoRenderers/ColorManager.cpp
Expand Up @@ -476,7 +476,7 @@ cmsHPROFILE CColorManager::CreateSourceProfile(CMS_PRIMARIES primaries, cmsToneC
}


bool CColorManager::Create3dLut(cmsHTRANSFORM transform, uint16_t **clutData, int *clutSize)
void CColorManager::Create3dLut(cmsHTRANSFORM transform, uint16_t **clutData, int *clutSize)
{
const int lutResolution = *clutSize;
int lutsamples = lutResolution * lutResolution * lutResolution * 3;
Expand Down
2 changes: 1 addition & 1 deletion xbmc/cores/VideoPlayer/VideoRenderers/ColorManager.h
Expand Up @@ -138,7 +138,7 @@ class CColorManager
\param resolution size of the 3D LUT to create
\param clut pointer to LUT data
*/
bool Create3dLut(cmsHTRANSFORM transform, uint16_t **clutData, int *clutSize);
void Create3dLut(cmsHTRANSFORM transform, uint16_t **clutData, int *clutSize);

// keep current display profile loaded here
cmsHPROFILE m_hProfile;
Expand Down

0 comments on commit 6638834

Please sign in to comment.