Home
last modified time | relevance | path

Searched refs:primTy (Results 1 – 5 of 5) sorted by relevance

/dports/lang/purescript/purescript-0.14.5/_cabal_deps/purescript-cst-0.4.0.0/src/Language/PureScript/
H A DEnvironment.hs258 primKind = primTy
289 primTy :: Text -> SourceType
290 primTy = TypeConstructor nullSourceAnn . primName function
294 tyFunction = primTy "Function"
298 tyString = primTy "String"
302 tyChar = primTy "Char"
306 tyNumber = primTy "Number"
310 tyInt = primTy "Int"
314 tyBoolean = primTy "Boolean"
318 tyArray = primTy "Array"
[all …]
/dports/graphics/embree/embree-3.13.2/kernels/bvh/
H A Dbvh.cpp10 BVHN<N>::BVHN (const PrimitiveType& primTy, Scene* scene) in BVHN() argument
12 primTy(&primTy), device(scene->device), scene(scene), in BVHN()
121 …< (builderName.find("MBlur") != std::string::npos ? "MB" : "") << "<" << primTy->name() << "> usin… in preBuild()
147 …std::cout << "finished BVH" << N << "<" << primTy->name() << "> : " << 1000.0f*dt << "ms, " << 1E-… in postBuild()
178 … " " << stat->sah() << " " << stat->bytesUsed() << " BVH" << N << "<" << primTy->name() << ">" << … in postBuild()
H A Dbvh_statistics.cpp138 const size_t bytes = bvh->primTy->getBytes(tri); in statistics()
139 s.statLeaf.numPrimsActive += bvh->primTy->sizeActive(tri); in statistics()
140 s.statLeaf.numPrimsTotal += bvh->primTy->sizeTotal(tri); in statistics()
H A Dbvh.h92 BVHN (const PrimitiveType& primTy, Scene* scene);
213 const PrimitiveType* primTy; //!< primitive type stored in the BVH
/dports/graphics/embree/embree-3.13.2/tutorials/bvh_access/
H A Dbvh_access.cpp195 if (std::string(bvh4->primTy->name()) == "triangle4v") break; in print_bvh()