#!/usr/bin/env python3 # SPDX-License-Identifier: BSD-3-Clause # Copyright (C) 2020, Google Inc. # # Author: Paul Elder # # generate.py - Run mojo code generator for generating libcamera IPC files import os import sys # TODO set sys.pycache_prefix for >= python3.8 sys.dont_write_bytecode = True import mojo.public.tools.bindings.mojom_bindings_generator as generator def _GetModulePath(path, output_dir): return os.path.join(output_dir, path.relative_path()) # Override the mojo code generator's generator list to only contain our # libcamera generator generator._BUILTIN_GENERATORS = {'libcamera': 'mojom_libcamera_generator'} # Override the mojo code generator's _GetModulePath method to not add # the '-module' suffix when searching for mojo modules, so that we can # pass the path to the mojom module without having to trim the '-module' suffix generator._GetModulePath = _GetModulePath generator.main() ter'>master libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/apps/qcam/assets/feathericons/italic.svg
blob: a123d371ab8792d87915fa89e14b0c067881f938 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-italic"><line x1="19" y1="4" x2="10" y2="4"></line><line x1="14" y1="20" x2="5" y2="20"></line><line x1="15" y1="4" x2="9" y2="20"></line></svg>