Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions gen/generator.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
[general]
library_name = "libwebp"
library_names = { "/demux\\.h$" = "libwebpdemux", "/mux\\.h$" = "libwebpmux", "/mux_types\\.h$" = "libwebpmux" }
output_file_path = "../src/Wrapper.jl"
module_name = "Wrapper"
jll_pkg_name = "libwebp_jll"
export_symbol_prefixes = ["WebP"]

# These are header-only inline convenience wrappers. Clang sees them in the
# headers, but the shared libraries only export the corresponding `*Internal`
# entry points or lower-level functions they call through to.
output_ignorelist = [
"WebPAnimDecoderNew",
"WebPAnimDecoderOptionsInit",
"WebPAnimEncoderNew",
"WebPAnimEncoderOptionsInit",
"WebPConfigInit",
"WebPConfigPreset",
"WebPDataClear",
"WebPDataCopy",
"WebPDataInit",
"WebPDemux",
"WebPDemuxPartial",
"WebPGetFeatures",
"WebPIDecGetYUV",
"WebPInitDecBuffer",
"WebPInitDecoderConfig",
"WebPIsAlphaMode",
"WebPIsPremultipliedMode",
"WebPIsRGBMode",
"WebPMuxCreate",
"WebPMuxNew",
"WebPPictureInit",
]
Loading
Loading