Ptex
PtexSeparableFilter.h
Go to the documentation of this file.
1#ifndef PtexSeparableFilter_h
2#define PtexSeparableFilter_h
3
4/*
5PTEX SOFTWARE
6Copyright 2014 Disney Enterprises, Inc. All rights reserved
7
8Redistribution and use in source and binary forms, with or without
9modification, are permitted provided that the following conditions are
10met:
11
12 * Redistributions of source code must retain the above copyright
13 notice, this list of conditions and the following disclaimer.
14
15 * Redistributions in binary form must reproduce the above copyright
16 notice, this list of conditions and the following disclaimer in
17 the documentation and/or other materials provided with the
18 distribution.
19
20 * The names "Disney", "Walt Disney Pictures", "Walt Disney Animation
21 Studios" or the names of its contributors may NOT be used to
22 endorse or promote products derived from this software without
23 specific prior written permission from Walt Disney Pictures.
24
25Disclaimer: THIS SOFTWARE IS PROVIDED BY WALT DISNEY PICTURES AND
26CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
27BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
28FOR A PARTICULAR PURPOSE, NONINFRINGEMENT AND TITLE ARE DISCLAIMED.
29IN NO EVENT SHALL WALT DISNEY PICTURES, THE COPYRIGHT HOLDER OR
30CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND BASED ON ANY
34THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
37*/
38
39#include "Ptexture.h"
40
42
44
46{
47 public:
48 virtual void release() { delete this; }
49 virtual void eval(float* result, int firstchan, int nchannels,
50 int faceid, float u, float v,
51 float uw1, float vw1, float uw2, float vw2,
52 float width, float blur);
53
54 protected:
56 _tx(tx), _options(opts), _result(0), _weight(0),
57 _firstChanOffset(0), _nchan(0), _ntxchan(_tx->numChannels()),
58 _dt(tx->dataType()), _uMode(tx->uBorderMode()), _vMode(tx->vBorderMode()),
59 _efm(tx->edgeFilterMode())
60 {
61 // if caller was compiled with older version of struct, set default for new opts
62 if (_options.__structSize < (char*)&_options.noedgeblend - (char*)&_options) {
64 }
65 }
67
68 virtual void buildKernel(PtexSeparableKernel& k, float u, float v, float uw, float vw,
69 Res faceRes) = 0;
70
71 void splitAndApply(PtexSeparableKernel& k, int faceid, const Ptex::FaceInfo& f);
72 void applyAcrossEdge(PtexSeparableKernel& k, int faceid, const Ptex::FaceInfo& f, int eid);
73 void applyToCorner(PtexSeparableKernel& k, int faceid, const Ptex::FaceInfo& f, int eid);
74 void applyToCornerFace(PtexSeparableKernel& k, const Ptex::FaceInfo& f, int eid,
75 int cfaceid, const Ptex::FaceInfo& cf, int ceid);
76 void apply(PtexSeparableKernel& k, int faceid, const Ptex::FaceInfo& f);
77
78 PtexTexture* _tx; // texture being evaluated
79 Options _options; // options
80 float* _result; // temp result
81 float _weight; // accumulated weight of data in _result
82 int _firstChanOffset; // byte offset of first channel to eval
83 int _nchan; // number of channels to eval
84 int _ntxchan; // number of channels in texture
85 DataType _dt; // data type of texture
86 BorderMode _uMode, _vMode; // border modes (clamp,black,periodic)
87 EdgeFilterMode _efm; // edge filter mode (rotate when kernel is rotated or not)
88};
89
91
92#endif
#define PTEX_NAMESPACE_END
Definition PtexVersion.h:62
Public API classes for reading, writing, caching, and filtering Ptex files.
Interface for filtered sampling of ptex data files.
Definition Ptexture.h:937
void splitAndApply(PtexSeparableKernel &k, int faceid, const Ptex::FaceInfo &f)
void applyToCornerFace(PtexSeparableKernel &k, const Ptex::FaceInfo &f, int eid, int cfaceid, const Ptex::FaceInfo &cf, int ceid)
virtual void eval(float *result, int firstchan, int nchannels, int faceid, float u, float v, float uw1, float vw1, float uw2, float vw2, float width, float blur)
Apply filter to a ptex data file.
void apply(PtexSeparableKernel &k, int faceid, const Ptex::FaceInfo &f)
void applyAcrossEdge(PtexSeparableKernel &k, int faceid, const Ptex::FaceInfo &f, int eid)
PtexSeparableFilter(PtexTexture *tx, const PtexFilter::Options &opts)
void applyToCorner(PtexSeparableKernel &k, int faceid, const Ptex::FaceInfo &f, int eid)
virtual void buildKernel(PtexSeparableKernel &k, float u, float v, float uw, float vw, Res faceRes)=0
virtual void release()
Release resources held by this pointer (pointer becomes invalid).
Interface for reading data from a ptex file.
Definition Ptexture.h:457
Choose filter options.
Definition Ptexture.h:956
int __structSize
(for internal use only)
Definition Ptexture.h:957
bool noedgeblend
Disable cross-face filtering. Useful for debugging or rendering on polys.
Definition Ptexture.h:961
Information about a face, as stored in the Ptex file header.
Definition Ptexture.h:229