Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IO_wavefront_obj.cc « wavefront_obj « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb0b4a1aca9b957b4dc1b135a6a0a19e60a8dff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup obj
 */

#include "BLI_timeit.hh"

#include "IO_wavefront_obj.h"

#include "obj_exporter.hh"
#include "obj_importer.hh"

void OBJ_export(bContext *C, const OBJExportParams *export_params)
{
  SCOPED_TIMER("OBJ export");
  blender::io::obj::exporter_main(C, *export_params);
}

void OBJ_import(bContext *C, const OBJImportParams *import_params)
{
  SCOPED_TIMER(__func__);
  blender::io::obj::importer_main(C, *import_params);
}