make color no longer transparent

v1
Brett 2024-04-29 21:46:32 -04:00
parent 86fd4a2a9a
commit 133728b641
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 0.16.14)
set(BLT_VERSION 0.16.15)
set(BLT_TEST_VERSION 0.0.1)
set(BLT_TARGET BLT)

View File

@ -420,7 +420,7 @@ namespace blt
inline color4 make_color(float r, float g, float b)
{
return color4{r, g, b};
return color4{r, g, b, 1.0f};
}
namespace vec_algorithm