mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 03:57:29 +00:00
Fixes GenGrandientV dulicated fn to GenGrandientH
This commit is contained in:
parent
863b34ef6a
commit
b2a1cc8f41
@ -140,8 +140,8 @@ pub const Image = extern struct {
|
||||
return GenImageGradientV(width, height, top, bottom);
|
||||
}
|
||||
|
||||
pub fn GenGradientV(width: c_int, height: c_int, left: Color, right: Color) Image {
|
||||
return GenImageGradientV(width, height, left, right);
|
||||
pub fn GenGradientH(width: c_int, height: c_int, left: Color, right: Color) Image {
|
||||
return GenImageGradientH(width, height, left, right);
|
||||
}
|
||||
|
||||
pub fn GenGradientRadial(width: c_int, height: c_int, density: f32, inner: Color, outer: Color) Image {
|
||||
|
Loading…
x
Reference in New Issue
Block a user