freetype: update submodule location

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-04-25 09:35:33 -07:00 committed by Stephen Gutekanst
parent 8c0c288fff
commit 0a435d36a7

View file

@ -91,7 +91,7 @@ pub const Bitmap = struct {
const buffer_size = std.math.absCast(self.pitch()) * self.rows(); const buffer_size = std.math.absCast(self.pitch()) * self.rows();
return if (self.handle.buffer == null) return if (self.handle.buffer == null)
// freetype returns a null pointer for zero-length allocations // freetype returns a null pointer for zero-length allocations
// https://github.com/hexops/freetype/blob/bbd80a52b7b749140ec87d24b6c767c5063be356/freetype/src/base/ftutil.c#L135 // https://github.com/hexops-graveyard/freetype/blob/bbd80a52b7b749140ec87d24b6c767c5063be356/freetype/src/base/ftutil.c#L135
null null
else else
self.handle.buffer[0..buffer_size]; self.handle.buffer[0..buffer_size];