5 ms·
A look at pathfinder
- pcwalton 7y agoMain author of Pathfinder here--feel free to ask any questions. :) Thanks to Nical for the excellent writeup!
- OskarS 7y agoMy previous (rather limited) understanding of Pathfinder was that it was just a text renderer, I didn't realize that it was a more general vector graphics package. Is the idea for Pathfinder that it should be integrated into Firefox for all its vector rendering needs (SVG and so forth)?
- pcwalton 7y agoHopefully, yes!
- iTokio 7y agoIs there still a need to cache results in a texture or is it practical to render from scratch each frame?
- nical 7y agoIf you know that the result will not change over frames, blitting a cached image will always be faster than re-rendering. It's not necessarily a need, just an improvement. That said pathfinder is fast enough already that it can deal with rendering interesting workloads every frames at 60fps, and will keep getting better at it, I think that there is room for improvement in the tiling phase.
- pcwalton 7y agoI would like to eventually add the option to cache masks in a texture. I think this should probably be an option for the user and not something I do behind the user's back unless the user explicitly opts into heuristics, though.
- deleted 7y ago[deleted]
- jacobolus 7y agoDoes this do proper linear (rather than gamma-encoded) compositing / anti-aliasing? If so, do people get mad that their fonts look a bit lighter than existing rasterization tools which (incorrectly) work in gammma-encoded color space?
- pcwalton 7y agoGamma correct compositing is an option. You can play with it if you load a monochrome SVG in the demo. For fonts, Pathfinder uses the standard trick of dilating the outlines a bit in order to make fonts look a bit darker at small sizes.
- cerberusss 7y agoSo if I read this correctly, it's an algorithm that Firefox could use when it handles the HTML canvas tag. For instance to draw SVG or text. Is that correct? And the good thing here, is that it uses GPU instructions to determine occlusion, and thus speed up the drawing process. What I don't get: if that's the case, shouldn't it be integrated at a lower level, i.e. not just for drawing SVG or text, but the whole of the canvas tag? Because that's where occlusion also could take place?
- pcwalton 7y agoYes, it would make sense to use Pathfinder for canvas as well. Some care is necessary to avoid regressing apps that read canvas data back from GPU to CPU frequently, to avoid thrashing the I/O bus, but in general it should be doable. In fact, Pathfinder offers a subset of the HTML canvas API which you can use in your Rust apps right now. Here's an example: https://github.com/pcwalton/pathfinder/blob/master/examples/canvas_minimal/src/main.rs https://github.com/pcwalton/pathfinder/blob/master/examples/...
- justanegg 7y agocrowded namespace