PathEngine home previous: iPathEngine::loadMeshFromBuffer()next: iPathEngine::newContentChunk()
Contents, API Reference, Interfaces, iPathEngine, loadSourceTiling

iPathEngine::loadSourceTiling()

Description

Constructs an iSourceTiling object from a data buffer previously saved out by iSourceTiling::save().

Syntax

std::unique_ptr<iSourceTiling> loadSourceTiling(const char* format, char const * data_Buffer, uint32_t data_BufferEntries)

Parameters

format A C string specifying the format of the data in the buffer. Currently this can be "xml" or "tok" (lower case).
The format string pointer is not retained after the call and can subsequently be safely deleted.
data_Buffer, data_BufferEntries (See Passing Arrays.) The data buffer to load from.

Return Value

A newly created Interface iSourceTiling object, constructed from the persistent data passed in.

C# Mapping

SourceTiling loadSourceTiling(string format, byte[] data);

Java Mapping

SourceTiling loadSourceTiling(String format, byte[] data);

Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEnginenext: iPathEngine::newContentChunk()