2016-07-26 19:41:18 +00:00
|
|
|
//
|
|
|
|
// Copyright 2013 Pixar
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
|
|
// with the following modification; you may not use this file except in
|
|
|
|
// compliance with the Apache License and the following modification to it:
|
|
|
|
// Section 6. Trademarks. is deleted and replaced with:
|
|
|
|
//
|
|
|
|
// 6. Trademarks. This License does not grant permission to use the trade
|
|
|
|
// names, trademarks, service marks, or product names of the Licensor
|
|
|
|
// and its affiliates, except as required to comply with Section 4(c) of
|
|
|
|
// the License and to reproduce the content of the NOTICE file.
|
|
|
|
//
|
|
|
|
// You may obtain a copy of the Apache License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the Apache License with the above modification is
|
|
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
// KIND, either express or implied. See the Apache License for the specific
|
|
|
|
// language governing permissions and limitations under the Apache License.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "../osd/mtlPatchShaderSource.h"
|
|
|
|
#include "../far/error.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <TargetConditionals.h>
|
|
|
|
|
|
|
|
namespace OpenSubdiv {
|
2019-05-23 01:00:36 +00:00
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
|
|
|
namespace Osd {
|
|
|
|
|
|
|
|
static std::string commonShaderSource(
|
2016-07-26 19:41:18 +00:00
|
|
|
#include "mtlPatchCommon.gen.h"
|
|
|
|
);
|
2019-05-24 20:37:54 +00:00
|
|
|
static std::string commonTessShaderSource(
|
|
|
|
#include "mtlPatchCommonTess.gen.h"
|
|
|
|
);
|
2019-05-23 01:40:58 +00:00
|
|
|
static std::string patchLegacyShaderSource(
|
|
|
|
#include "mtlPatchLegacy.gen.h"
|
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string patchBasisTypesShaderSource(
|
Improved patch basis eval for Osd to match Far
This updates the patch basis evaluation functions in Osd
to match recent changes to far/patchBasis.
This also exposes a common facility for dealing with PatchCoord,
PatchArray, and PatchParam. These are exposed as global functions
operating on struct data, since C++ style class methods are not
supported by all of the Osd shader and kernel execution envirionments.
Changes:
- Merged far/patchBasis.cpp to osd/patchBasisCommon{,Types,Eval}.h
- Exposed PatchCoord, PatchArray, and PatchParam to Osd kernels
- exposed OsdEvaluatePatchBasis and OsdEvaluatePatchBasisNormalized
- Updated CPU, TBB, Omp, CUDA, OpenCL, GLSL, HLSL, and Metal evaluators
- Updated glFVarViewer
2018-10-30 07:37:25 +00:00
|
|
|
#include "patchBasisCommonTypes.gen.h"
|
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string patchBasisShaderSource(
|
2016-07-26 19:41:18 +00:00
|
|
|
#include "patchBasisCommon.gen.h"
|
Improved patch basis eval for Osd to match Far
This updates the patch basis evaluation functions in Osd
to match recent changes to far/patchBasis.
This also exposes a common facility for dealing with PatchCoord,
PatchArray, and PatchParam. These are exposed as global functions
operating on struct data, since C++ style class methods are not
supported by all of the Osd shader and kernel execution envirionments.
Changes:
- Merged far/patchBasis.cpp to osd/patchBasisCommon{,Types,Eval}.h
- Exposed PatchCoord, PatchArray, and PatchParam to Osd kernels
- exposed OsdEvaluatePatchBasis and OsdEvaluatePatchBasisNormalized
- Updated CPU, TBB, Omp, CUDA, OpenCL, GLSL, HLSL, and Metal evaluators
- Updated glFVarViewer
2018-10-30 07:37:25 +00:00
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string patchBasisEvalShaderSource(
|
Improved patch basis eval for Osd to match Far
This updates the patch basis evaluation functions in Osd
to match recent changes to far/patchBasis.
This also exposes a common facility for dealing with PatchCoord,
PatchArray, and PatchParam. These are exposed as global functions
operating on struct data, since C++ style class methods are not
supported by all of the Osd shader and kernel execution envirionments.
Changes:
- Merged far/patchBasis.cpp to osd/patchBasisCommon{,Types,Eval}.h
- Exposed PatchCoord, PatchArray, and PatchParam to Osd kernels
- exposed OsdEvaluatePatchBasis and OsdEvaluatePatchBasisNormalized
- Updated CPU, TBB, Omp, CUDA, OpenCL, GLSL, HLSL, and Metal evaluators
- Updated glFVarViewer
2018-10-30 07:37:25 +00:00
|
|
|
#include "patchBasisCommonEval.gen.h"
|
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string bsplineShaderSource(
|
2016-07-26 19:41:18 +00:00
|
|
|
#include "mtlPatchBSpline.gen.h"
|
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string gregoryShaderSource(
|
2016-07-26 19:41:18 +00:00
|
|
|
#include "mtlPatchGregory.gen.h"
|
|
|
|
);
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string gregoryBasisShaderSource(
|
2016-07-26 19:41:18 +00:00
|
|
|
#include "mtlPatchGregoryBasis.gen.h"
|
|
|
|
);
|
|
|
|
|
2019-05-23 01:00:36 +00:00
|
|
|
static std::string
|
|
|
|
GetPatchTypeDefine(Far::PatchDescriptor::Type type,
|
|
|
|
Far::PatchDescriptor::Type fvarType) {
|
|
|
|
|
|
|
|
std::stringstream ss;
|
|
|
|
switch(type) {
|
|
|
|
case Far::PatchDescriptor::LINES: ss << "#define OSD_PATCH_LINES 1\n"; break;
|
|
|
|
case Far::PatchDescriptor::TRIANGLES: ss << "#define OSD_PATCH_TRIANGLES 1\n"; break;
|
|
|
|
case Far::PatchDescriptor::QUADS: ss << "#define OSD_PATCH_QUADS 1\n"; break;
|
|
|
|
case Far::PatchDescriptor::REGULAR: ss << "#define OSD_PATCH_BSPLINE 1\n#define OSD_PATCH_REGULAR 1\n"; break;
|
|
|
|
case Far::PatchDescriptor::GREGORY: ss << "#define OSD_PATCH_GREGORY 1\n"; break;
|
2019-05-24 19:39:20 +00:00
|
|
|
case Far::PatchDescriptor::GREGORY_BOUNDARY: ss << "#define OSD_PATCH_GREGORY_BOUNDARY 1\n"; break;
|
2019-05-23 01:00:36 +00:00
|
|
|
case Far::PatchDescriptor::GREGORY_BASIS: ss << "#define OSD_PATCH_GREGORY_BASIS 1\n"; break;
|
|
|
|
default:
|
|
|
|
assert("Unknown Far::PatchDescriptor::Type" && 0);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
switch(fvarType) {
|
|
|
|
case Far::PatchDescriptor::REGULAR: ss << "#define OSD_FACEVARYING_PATCH_REGULAR 1\n"; break;
|
|
|
|
case Far::PatchDescriptor::GREGORY_BASIS: ss << "#define OSD_FACEVARYING_PATCH_GREGORY_BASIS 1\n"; break;
|
|
|
|
default:
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string
|
|
|
|
GetPatchTypeSource(Far::PatchDescriptor::Type type) {
|
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
case Far::PatchDescriptor::QUADS: return "";
|
|
|
|
case Far::PatchDescriptor::REGULAR: return bsplineShaderSource;
|
|
|
|
case Far::PatchDescriptor::GREGORY: return gregoryShaderSource;
|
|
|
|
case Far::PatchDescriptor::GREGORY_BOUNDARY: return gregoryShaderSource;
|
|
|
|
case Far::PatchDescriptor::GREGORY_BASIS: return gregoryBasisShaderSource;
|
|
|
|
default:
|
|
|
|
assert("Unknown Far::PatchDescriptor::Type" && 0);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
std::string
|
|
|
|
MTLPatchShaderSource::GetCommonShaderSource() {
|
|
|
|
#if TARGET_OS_IOS || TARGET_OS_TV
|
2019-05-23 01:40:58 +00:00
|
|
|
return std::string("#define OSD_METAL_IOS 1\n")
|
|
|
|
.append(commonShaderSource)
|
2019-05-24 20:37:54 +00:00
|
|
|
.append(commonTessShaderSource)
|
2019-05-23 01:40:58 +00:00
|
|
|
.append(patchLegacyShaderSource);
|
2019-05-23 01:00:36 +00:00
|
|
|
#elif TARGET_OS_OSX
|
2019-05-23 01:40:58 +00:00
|
|
|
return std::string("#define OSD_METAL_OSX 1\n")
|
|
|
|
.append(commonShaderSource)
|
2019-05-24 20:37:54 +00:00
|
|
|
.append(commonTessShaderSource)
|
2019-05-23 01:40:58 +00:00
|
|
|
.append(patchLegacyShaderSource);
|
2019-05-23 01:00:36 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
std::string
|
|
|
|
MTLPatchShaderSource::GetPatchBasisShaderSource() {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "#define OSD_PATCH_BASIS_METAL 1\n";
|
2016-07-26 19:41:18 +00:00
|
|
|
#if defined(OPENSUBDIV_GREGORY_EVAL_TRUE_DERIVATIVES)
|
2019-05-23 01:00:36 +00:00
|
|
|
ss << "#define OPENSUBDIV_GREGORY_EVAL_TRUE_DERIVATIVES 1\n";
|
2016-07-26 19:41:18 +00:00
|
|
|
#endif
|
2019-05-23 01:00:36 +00:00
|
|
|
ss << patchBasisTypesShaderSource;
|
|
|
|
ss << patchBasisShaderSource;
|
|
|
|
ss << patchBasisEvalShaderSource;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
std::string
|
|
|
|
MTLPatchShaderSource::GetVertexShaderSource(Far::PatchDescriptor::Type type,
|
|
|
|
Far::PatchDescriptor::Type fvarType) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << GetPatchTypeDefine(type, fvarType);
|
|
|
|
ss << GetCommonShaderSource();
|
|
|
|
ss << GetPatchTypeSource(type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
std::string
|
|
|
|
MTLPatchShaderSource::GetHullShaderSource(Far::PatchDescriptor::Type type,
|
|
|
|
Far::PatchDescriptor::Type fvarType) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << GetPatchTypeDefine(type, fvarType);
|
|
|
|
ss << GetCommonShaderSource();
|
|
|
|
ss << GetPatchTypeSource(type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
std::string
|
|
|
|
MTLPatchShaderSource::GetDomainShaderSource(Far::PatchDescriptor::Type type,
|
|
|
|
Far::PatchDescriptor::Type fvarType) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << GetPatchTypeDefine(type, fvarType);
|
|
|
|
ss << GetCommonShaderSource();
|
|
|
|
ss << GetPatchTypeSource(type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace Osd
|
|
|
|
|
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
} // end namespace OpenSubdiv
|