make color no longer transparent
parent
86fd4a2a9a
commit
133728b641
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue