Blake Lucas

Results 5 issues of Blake Lucas

Font stash returns glyph positions in integer pixels. When rendering text at floating point positions, glyph positions get rounded to the nearest pixel. This is particularly noticeable with animated moving...

This PR adds different line styles by generating uv textures along stroke paths and then applying a shading style. Extra vertices are inserted so that the UV distortion occurs only...

This PR adds font dilation as nvgFontDilate() to give better emphasis to text, especially when it is overlaid on an unknown background color or image. It is implemented with gray...

Doesn't compile on VS2015. Complains about "error C2397: conversion from 'int' to 'float' requires a narrowing conversion" All URects need to be initialized with float data to fix the error....

`EnumSet` currently uses `std::array` as the backing type because `std::bitset` is not sufficiently constexpr. This PR introduces `FixedBitSet` as a possible solution. The overall advantage is that `EnumSet` can then...