mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-12-04 08:50:06 +00:00
295 lines
11 KiB
C++
295 lines
11 KiB
C++
//
|
|
// Copyright 2013 Pixar
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License
|
|
// and the following modification to it: Section 6 Trademarks.
|
|
// 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 for reproducing
|
|
// the content of the NOTICE file.
|
|
//
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
// either express or implied. See the License for the specific
|
|
// language governing permissions and limitations under the
|
|
// License.
|
|
//
|
|
|
|
#include "../osd/cpuComputeContext.h"
|
|
#include "../osd/ompComputeController.h"
|
|
#include "../osd/ompKernel.h"
|
|
|
|
#ifdef OPENSUBDIV_HAS_OPENMP
|
|
#include <omp.h>
|
|
#endif
|
|
|
|
namespace OpenSubdiv {
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
|
OsdOmpComputeController::OsdOmpComputeController(int numThreads) {
|
|
|
|
_numThreads = (numThreads == -1) ? omp_get_num_procs() : numThreads;
|
|
}
|
|
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyBilinearFaceVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeFace(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::F_IT)->GetBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::F_ITa)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyBilinearEdgeVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeBilinearEdge(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::E_IT)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyBilinearVertexVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeBilinearVertex(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyCatmarkFaceVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeFace(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::F_IT)->GetBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::F_ITa)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyCatmarkEdgeVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeEdge(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::E_IT)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::E_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyCatmarkVertexVerticesKernelB(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeVertexB(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_IT)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyCatmarkVertexVerticesKernelA1(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeVertexA(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd(), false);
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyCatmarkVertexVerticesKernelA2(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeVertexA(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd(), true);
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyLoopEdgeVerticesKernel(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeEdge(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::E_IT)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::E_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyLoopVertexVerticesKernelB(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeLoopVertexB(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_IT)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd());
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyLoopVertexVerticesKernelA1(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeVertexA(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd(), false);
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyLoopVertexVerticesKernelA2(
|
|
FarKernelBatch const &batch, void *clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
OsdOmpComputeVertexA(
|
|
context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
context->GetCurrentVaryingBuffer(),
|
|
(const int*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_ITa)->GetBuffer(),
|
|
(const float*)context->GetTable(FarSubdivisionTables<OsdVertex>::V_W)->GetBuffer(),
|
|
batch.GetVertexOffset(), batch.GetTableOffset(), batch.GetStart(), batch.GetEnd(), true);
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::ApplyVertexEdits(
|
|
FarKernelBatch const &batch, void * clientdata) const {
|
|
|
|
OsdCpuComputeContext * context =
|
|
static_cast<OsdCpuComputeContext*>(clientdata);
|
|
assert(context);
|
|
|
|
const OsdCpuHEditTable *edit = context->GetEditTable(batch.GetTableIndex());
|
|
assert(edit);
|
|
|
|
const OsdCpuTable * primvarIndices = edit->GetPrimvarIndices();
|
|
const OsdCpuTable * editValues = edit->GetEditValues();
|
|
|
|
if (edit->GetOperation() == FarVertexEdit::Add) {
|
|
OsdOmpEditVertexAdd(context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
edit->GetPrimvarOffset(),
|
|
edit->GetPrimvarWidth(),
|
|
batch.GetVertexOffset(),
|
|
batch.GetTableOffset(),
|
|
batch.GetStart(),
|
|
batch.GetEnd(),
|
|
static_cast<unsigned int*>(primvarIndices->GetBuffer()),
|
|
static_cast<float*>(editValues->GetBuffer()));
|
|
} else if (edit->GetOperation() == FarVertexEdit::Set) {
|
|
OsdOmpEditVertexSet(context->GetVertexDescriptor(),
|
|
context->GetCurrentVertexBuffer(),
|
|
edit->GetPrimvarOffset(),
|
|
edit->GetPrimvarWidth(),
|
|
batch.GetVertexOffset(),
|
|
batch.GetTableOffset(),
|
|
batch.GetStart(),
|
|
batch.GetEnd(),
|
|
static_cast<unsigned int*>(primvarIndices->GetBuffer()),
|
|
static_cast<float*>(editValues->GetBuffer()));
|
|
}
|
|
}
|
|
|
|
void
|
|
OsdOmpComputeController::Synchronize() {
|
|
// XXX:
|
|
}
|
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
} // end namespace OpenSubdiv
|
|
|