Fixed -Wsign-conversion
This commit is contained in:
Родитель
31e1b941e5
Коммит
abe3e208b0
|
@ -94,7 +94,7 @@ source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
|
|||
source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC UVAtlas/inc)
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE UVAtlas UVAtlas/UVAtlas/geodesics UVAtlas/isochart)
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE UVAtlas UVAtlas/geodesics UVAtlas/isochart)
|
||||
|
||||
if(MSVC)
|
||||
# Use higher Warning Level
|
||||
|
|
|
@ -888,8 +888,8 @@ int __cdecl wmain(_In_ int argc, _In_z_count_(argc) wchar_t* argv[])
|
|||
else
|
||||
{
|
||||
hr = LoadFromOBJ(pConv->szSrc, inMesh, inMaterial,
|
||||
(dwOptions & (1 << OPT_CLOCKWISE)) ? false : true,
|
||||
(dwOptions & (1 << OPT_NODDS)) ? false : true);
|
||||
(dwOptions & (DWORD64(1) << OPT_CLOCKWISE)) ? false : true,
|
||||
(dwOptions & (DWORD64(1) << OPT_NODDS)) ? false : true);
|
||||
}
|
||||
if (FAILED(hr))
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче