nvidia-texture-tools/src/nvtt/CubeSurface.h

114 lines
3.5 KiB
C
Raw Normal View History

2011-09-27 17:28:01 +00:00
// Copyright (c) 2009-2011 Ignacio Castano <castano@gmail.com>
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
#ifndef NVTT_CUBEIMAGE_H
#define NVTT_CUBEIMAGE_H
#include "nvtt.h"
2011-09-28 16:46:01 +00:00
#include "Surface.h"
#include "nvimage/FloatImage.h"
2011-09-27 17:28:01 +00:00
2011-09-30 17:21:08 +00:00
#include "nvmath/Vector.h"
2011-09-27 17:28:01 +00:00
#include "nvcore/RefCounted.h"
#include "nvcore/Ptr.h"
2011-09-30 17:21:08 +00:00
#include "nvcore/Array.h"
2011-09-27 17:28:01 +00:00
namespace nvtt
{
2011-10-11 06:40:40 +00:00
struct TexelTable {
2011-11-11 00:48:22 +00:00
TexelTable(uint edgeLength);
2011-09-30 17:21:08 +00:00
2011-10-11 06:40:40 +00:00
float solidAngle(uint f, uint x, uint y) const;
const nv::Vector3 & direction(uint f, uint x, uint y) const;
2011-09-30 17:21:08 +00:00
uint size;
2011-10-11 06:40:40 +00:00
nv::Array<float> solidAngleArray;
nv::Array<nv::Vector3> directionArray;
2011-09-30 17:21:08 +00:00
};
2011-09-27 17:28:01 +00:00
struct CubeSurface::Private : public nv::RefCounted
2011-09-27 17:28:01 +00:00
{
void operator=(const Private &);
public:
Private()
{
nvDebugCheck( refCount() == 0 );
2011-09-29 00:58:47 +00:00
edgeLength = 0;
2011-10-11 06:40:40 +00:00
texelTable = NULL;
2011-09-27 17:28:01 +00:00
}
Private(const Private & p) : RefCounted() // Copy ctor. inits refcount to 0.
{
nvDebugCheck( refCount() == 0 );
2011-09-29 00:58:47 +00:00
edgeLength = p.edgeLength;
2011-09-27 17:28:01 +00:00
for (uint i = 0; i < 6; i++) {
2011-10-10 20:24:12 +00:00
face[i] = p.face[i];
2011-09-27 17:28:01 +00:00
}
2011-10-11 06:40:40 +00:00
texelTable = NULL; // @@ Transfer tables. Needs refcounting?
2011-09-27 17:28:01 +00:00
}
~Private()
{
2011-10-11 06:40:40 +00:00
delete texelTable;
2011-09-27 17:28:01 +00:00
}
2011-09-29 00:58:47 +00:00
void allocate(uint edgeLength)
{
2011-09-29 00:58:47 +00:00
this->edgeLength = edgeLength;
for (uint i = 0; i < 6; i++) {
face[i].detach();
face[i].m->image = new nv::FloatImage;
face[i].m->image->allocate(4, edgeLength, edgeLength, 1);
}
}
2011-10-11 06:40:40 +00:00
void allocateTexelTable()
{
if (edgeLength == 0) {
edgeLength = face[0].width();
}
2011-10-11 06:40:40 +00:00
if (texelTable == NULL) {
2011-11-11 00:48:22 +00:00
texelTable = new TexelTable(edgeLength);
2011-10-11 06:40:40 +00:00
}
}
2011-09-30 17:21:08 +00:00
// Filtering helpers:
2013-06-07 17:53:55 +00:00
nv::Vector3 applyAngularFilter(const nv::Vector3 & dir, float coneAngle, float * filterTable, int tableSize);
2011-09-30 17:21:08 +00:00
nv::Vector3 applyCosinePowerFilter(const nv::Vector3 & dir, float coneAngle, float cosinePower);
2013-06-07 17:53:55 +00:00
nv::Vector3 sample(const nv::Vector3 & dir);
2011-09-29 00:58:47 +00:00
uint edgeLength;
Surface face[6];
2011-10-11 06:40:40 +00:00
TexelTable * texelTable;
2011-09-27 17:28:01 +00:00
};
} // nvtt namespace
#endif // NVTT_CUBEIMAGE_H