summaryrefslogtreecommitdiff
path: root/rsvg_internals
Commit message (Expand)AuthorAgeFilesLines
* rsvg-pixbuf.c: Port all the functions here to RustFederico Mena Quintero2019-01-113-15/+246
* impl Error for RenderingErrorFederico Mena Quintero2019-01-111-2/+28
* Turn Handle::get_pixbuf_sub() from a method to a standalone functionFederico Mena Quintero2019-01-101-17/+16
* Move the surface-to-pixbuf code to a separate fileFederico Mena Quintero2019-01-104-34/+55
* CssStyles: Move two functions into methods hereFederico Mena Quintero2019-01-102-76/+73
* load_css(): Move to css.rsFederico Mena Quintero2019-01-105-43/+44
* handle.rs: Remove the raw handle pointer argument from a bunch of functionsFederico Mena Quintero2019-01-101-32/+17
* Handle::get_position_sub(): Move the implementation from rsvg_handle_rust_get...Federico Mena Quintero2019-01-101-25/+36
* Handle::get_dimensions(): Move implementation from rsvg_handle_rust_get_dimen...Federico Mena Quintero2019-01-101-23/+40
* Handle::get_dimensions_sub(): Move implementation from rsvg_handle_rust_get_d...Federico Mena Quintero2019-01-101-23/+39
* rsvg_handle_new_from_data(): Port the implementation to RustFederico Mena Quintero2019-01-102-0/+35
* Defs: free the extern RsvgHandles on DropFederico Mena Quintero2019-01-102-2/+12
* Handle::get_dimensions() - Don't call out to the C codeFederico Mena Quintero2019-01-101-3/+1
* rsvg_handle_new_from_gfile_sync(): Port the implementation to RustFederico Mena Quintero2019-01-092-0/+37
* Handle::construct_read_stream_sync() - Move code from the exported function i...Federico Mena Quintero2019-01-095-26/+41
* rsvg_handle_new_from_stream_sync(): Port to RustFederico Mena Quintero2019-01-093-0/+37
* rsvg_handle_set_base_gfile(): Port the implementation to RustFederico Mena Quintero2019-01-082-1/+24
* Handle.set_base_url() - Move the load_state check to hereFederico Mena Quintero2019-01-081-5/+7
* Port all handling of the size_func to RustFederico Mena Quintero2019-01-082-52/+71
* handle: cleanup read_stream_syncPaolo Borelli2019-01-081-22/+6
* node: split resolve_resources methodPaolo Borelli2019-01-0832-199/+115
* Defs::lookup() - take a LoadOptions, not a handleFederico Mena Quintero2019-01-073-13/+9
* set_atts(): Don't take a *mut RsvgHandle, take a &LoadingOptions insteadFederico Mena Quintero2019-01-0732-160/+101
* filters/image.rs: Don't store the handle; store the LoadOptions insteadFederico Mena Quintero2019-01-072-12/+9
* load_image_to_surface(): Take a LoadOptions, not a handleFederico Mena Quintero2019-01-073-10/+13
* LoadOptions: also store the base_urlFederico Mena Quintero2019-01-071-10/+10
* LoadFlags: renamed from LoadOptionsFederico Mena Quintero2019-01-072-13/+29
* Defs::get_extern_handle(): Don't take a handleFederico Mena Quintero2019-01-071-7/+11
* handle::load_extern(): Take a LoadOptions, not a whole handleFederico Mena Quintero2019-01-072-5/+4
* handle::load_extern(): No need to cascade the extern SVGFederico Mena Quintero2019-01-071-7/+0
* get_rust_handle(): Make privateFederico Mena Quintero2019-01-071-1/+1
* handle::get_dpi() - Inline into the single callerFederico Mena Quintero2019-01-071-10/+3
* css::parse_into_css_styles() - Take a base_url, not a handleFederico Mena Quintero2019-01-074-29/+36
* handle::load_css(): Return some errors, at leastFederico Mena Quintero2019-01-074-37/+44
* handle::acquire_stream() - Removed; inline this one-liner into all callersFederico Mena Quintero2019-01-072-9/+2
* handle::acquire_data() - Removed; inline this one-liner into all callersFederico Mena Quintero2019-01-072-10/+4
* Svg::load_from_stream(): Move code from Handle::read_stream_internal()Federico Mena Quintero2019-01-072-14/+30
* Store the node ids in Svg, not in DefsFederico Mena Quintero2019-01-076-55/+47
* svg: store handle interallyPaolo Borelli2019-01-074-29/+27
* handle: consolidate allowed url checkPaolo Borelli2019-01-064-13/+12
* dpi: export function to CPaolo Borelli2019-01-061-0/+2
* handle: check start state in the rust side of set_base_uriPaolo Borelli2019-01-062-36/+26
* Merge branch 'pborelli/librsvg-draw-ctx'Federico Mena Quintero2019-01-056-175/+342
|\
| * handle: move the base_uri field to rustPaolo Borelli2019-01-062-1/+19
| * handle: move is_loaded checks to rustPaolo Borelli2019-01-052-21/+41
| * handle: move rsvg_handle_get_dimensions to rustPaolo Borelli2019-01-052-0/+26
| * handle: remove now unused functionPaolo Borelli2019-01-052-14/+0
| * handle: move rsvg_handle_get_position_sub to rustPaolo Borelli2019-01-052-0/+48
| * handle: move rsvg_handle_get_dimensions_sub to rustPaolo Borelli2019-01-052-0/+40
| * handle: move the size_func in the rust handlePaolo Borelli2019-01-052-0/+58