Skip to content

Instantly share code, notes, and snippets.

@raph-amiard
Created May 3, 2015 13:18
Show Gist options
  • Save raph-amiard/9bd1dbb03ea3286b0b11 to your computer and use it in GitHub Desktop.
Save raph-amiard/9bd1dbb03ea3286b0b11 to your computer and use it in GitHub Desktop.
// Ewwww
NVGpaint shadowPaint = nvgBoxGradient(mCtx, left + shadow.d_xpos - shadow.d_spread, top + shadow.d_ypos - shadow.d_spread, width + shadow.d_spread * 2.f, height + shadow.d_spread * 2.f, c0 + shadow.d_spread, shadow.d_blur, nvgRGBA(0, 0, 0, 128), nvgRGBA(0, 0, 0, 0));
// What's so wrong about
NVGpaint shadowPaint = nvgBoxGradient(
mCtx,
left + shadow.d_xpos - shadow.d_spread,
top + shadow.d_ypos - shadow.d_spread,
width + shadow.d_spread * 2.f,
height + shadow.d_spread * 2.f,
c0 + shadow.d_spread,
shadow.d_blur,
nvgRGBA(0, 0, 0, 128), nvgRGBA(0, 0, 0, 0)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment