This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
nanovg
mirror of
https://github.com/VCVRack/nanovg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Warning/Error fix: added int return type to nvgIsBlack
shared-context
Doug Binks
11 years ago
parent
730b8c2edd
commit
d16b4df7fd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/nanovg.c
+ 1
- 1
src/nanovg.c
View File
@@ -346,7 +346,7 @@ struct NVGcolor nvgHSLA(float h, float s, float l, unsigned char a)
return col;
}
nvgIsBlack( struct NVGcolor col )
int
nvgIsBlack( struct NVGcolor col )
{
if( col.r == 0.0f && col.g == 0.0f && col.b == 0.0f && col.a == 0.0f )
{
Write
Preview
Loading…
Cancel
Save