mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-04-21 21:30:01 +08:00

The latest version of Draco brings many new enhancements to improve the development experience: * Stable API release * Support for npm Javascript package management * Javascript based encoder * Generalized metadata for meshes and point clouds * Now supporting material properties included along with encoded file * Improved compression rates: * 15% better compression on smaller models * 40% better compression of normals * Performance improvements (~10% faster encoding, decoding) * Reduced GPU memory usage: * Option to store decoded quantized attributes * Support for triangle strip connectivity on decoded meshes * iOS 9 Javascript decoder * Bitstream specification now available
22 lines
616 B
CMake
22 lines
616 B
CMake
// If this file is named draco_version.h.cmake:
|
|
// This file is used as input at cmake generation time.
|
|
|
|
// If this file is named draco_version.h:
|
|
// GENERATED FILE, DO NOT EDIT. SEE ABOVE.
|
|
#ifndef DRACO_DRACO_VERSION_H_
|
|
#define DRACO_DRACO_VERSION_H_
|
|
|
|
#include "draco/core/draco_version.h"
|
|
|
|
// Returns git hash of Draco git repository.
|
|
const char *draco_git_hash();
|
|
|
|
// Returns the output of the git describe command when run from the Draco git
|
|
// repository.
|
|
const char *draco_git_version();
|
|
|
|
// Returns the version string from core/draco_version.h.
|
|
const char* draco_version();
|
|
|
|
#endif // DRACO_DRACO_VERSION_H_
|