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: cebdf33413e0028c19fa57578ba961003b5c4d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup obj
 */

#include "BLI_timeit.hh"

#include "IO_wavefront_obj.h"

#include "obj_exporter.hh"

/**
 * C-interface for the exporter.
 */
void OBJ_export(bContext *C, const OBJExportParams *export_params)
{
  SCOPED_TIMER("OBJ export");
  blender::io::obj::exporter_main(C, *export_params);
}