2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
2015-05-19 03:48:29 +00:00
|
|
|
following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
/** @file Defines a post processing step to reorder faces for
|
2015-05-19 03:48:29 +00:00
|
|
|
better cache locality*/
|
|
|
|
#ifndef AI_IMPROVECACHELOCALITY_H_INC
|
|
|
|
#define AI_IMPROVECACHELOCALITY_H_INC
|
|
|
|
|
2019-06-10 21:26:00 +00:00
|
|
|
#include "Common/BaseProcess.h"
|
|
|
|
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/types.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
struct aiMesh;
|
|
|
|
|
2023-03-14 20:04:43 +00:00
|
|
|
namespace Assimp {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** The ImproveCacheLocalityProcess reorders all faces for improved vertex
|
|
|
|
* cache locality. It tries to arrange all faces to fans and to render
|
|
|
|
* faces which share vertices directly one after the other.
|
|
|
|
*
|
|
|
|
* @note This step expects triagulated input data.
|
|
|
|
*/
|
2023-03-14 20:04:43 +00:00
|
|
|
class ImproveCacheLocalityProcess : public BaseProcess {
|
2015-05-19 03:48:29 +00:00
|
|
|
public:
|
2023-03-14 20:04:43 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/// The default class constructor / destructor.
|
2015-05-19 03:57:13 +00:00
|
|
|
ImproveCacheLocalityProcess();
|
2023-03-14 20:04:43 +00:00
|
|
|
~ImproveCacheLocalityProcess() override = default;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Check whether the pp step is active
|
2023-03-14 22:32:03 +00:00
|
|
|
bool IsActive( unsigned int pFlags) const override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Executes the pp step on a given scene
|
2023-03-14 22:32:03 +00:00
|
|
|
void Execute( aiScene* pScene) override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Configures the pp step
|
2023-03-14 22:32:03 +00:00
|
|
|
void SetupProperties(const Importer* pImp) override;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
protected:
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Executes the postprocessing step on the given mesh
|
|
|
|
* @param pMesh The mesh to process.
|
|
|
|
* @param meshNum Index of the mesh to process
|
|
|
|
*/
|
2019-06-10 21:26:00 +00:00
|
|
|
ai_real ProcessMesh( aiMesh* pMesh, unsigned int meshNum);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
private:
|
2015-05-19 03:57:13 +00:00
|
|
|
//! Configuration parameter: specifies the size of the cache to
|
|
|
|
//! optimize the vertex data for.
|
2019-06-10 21:26:00 +00:00
|
|
|
unsigned int mConfigCacheDepth;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace Assimp
|
|
|
|
|
|
|
|
#endif // AI_IMPROVECACHELOCALITY_H_INC
|