Lines Matching refs:GraphBuilder

183 zimg::graph::GraphBuilder::ColorFamily translate_color_family(zimg_color_family_e family)  in translate_color_family()
185 using zimg::graph::GraphBuilder; in translate_color_family()
187 …static SM_CONSTEXPR_14 const zimg::static_map<zimg_color_family_e, GraphBuilder::ColorFamily, 3> m… in translate_color_family()
188 { ZIMG_COLOR_GREY, GraphBuilder::ColorFamily::GREY }, in translate_color_family()
189 { ZIMG_COLOR_RGB, GraphBuilder::ColorFamily::RGB }, in translate_color_family()
190 { ZIMG_COLOR_YUV, GraphBuilder::ColorFamily::YUV }, in translate_color_family()
195 zimg::graph::GraphBuilder::AlphaType translate_alpha(zimg_alpha_type_e alpha) in translate_alpha()
197 using zimg::graph::GraphBuilder; in translate_alpha()
199 static SM_CONSTEXPR_14 const zimg::static_map<zimg_alpha_type_e, GraphBuilder::AlphaType, 3> map{ in translate_alpha()
200 { ZIMG_ALPHA_NONE, GraphBuilder::AlphaType::NONE }, in translate_alpha()
201 { ZIMG_ALPHA_STRAIGHT, GraphBuilder::AlphaType::STRAIGHT }, in translate_alpha()
202 { ZIMG_ALPHA_PREMULTIPLIED, GraphBuilder::AlphaType::PREMULTIPLIED }, in translate_alpha()
207 zimg::graph::GraphBuilder::FieldParity translate_field_parity(zimg_field_parity_e field) in translate_field_parity()
209 using zimg::graph::GraphBuilder; in translate_field_parity()
211 …static SM_CONSTEXPR_14 const zimg::static_map<zimg_field_parity_e, GraphBuilder::FieldParity, 3> m… in translate_field_parity()
212 { ZIMG_FIELD_PROGRESSIVE, GraphBuilder::FieldParity::PROGRESSIVE }, in translate_field_parity()
213 { ZIMG_FIELD_TOP, GraphBuilder::FieldParity::TOP }, in translate_field_parity()
214 { ZIMG_FIELD_BOTTOM, GraphBuilder::FieldParity::BOTTOM }, in translate_field_parity()
219 std::pair<zimg::graph::GraphBuilder::ChromaLocationW, zimg::graph::GraphBuilder::ChromaLocationH> t… in translate_chroma_location()
221 typedef zimg::graph::GraphBuilder::ChromaLocationW ChromaLocationW; in translate_chroma_location()
222 typedef zimg::graph::GraphBuilder::ChromaLocationH ChromaLocationH; in translate_chroma_location()
387 void import_graph_state_common(const zimg_image_format &src, zimg::graph::GraphBuilder::state *out) in import_graph_state_common()
420 std::pair<zimg::graph::GraphBuilder::state, zimg::graph::GraphBuilder::state> import_graph_state(co… in import_graph_state()
426 zimg::graph::GraphBuilder::state src_state{}; in import_graph_state()
427 zimg::graph::GraphBuilder::state dst_state{}; in import_graph_state()
455 zimg::graph::GraphBuilder::params import_graph_params(const zimg_graph_builder_params &src, std::un… in import_graph_params()
459 zimg::graph::GraphBuilder::params params{}; in import_graph_params()
713 zimg::graph::GraphBuilder::state src_state; in zimg_filter_graph_build()
714 zimg::graph::GraphBuilder::state dst_state; in zimg_filter_graph_build()
715 zimg::graph::GraphBuilder::params graph_params; in zimg_filter_graph_build()
723 zimg::graph::GraphBuilder builder; in zimg_filter_graph_build()