Hakeem Adam
getuffassassin11
About Me
Media Artist / Researcher
EXPERTISE
Game Artist
INDUSTRY
Gamedev
Houdini Skills
Availability
Not Specified
Recent Forum Posts
An artist introduction to the HDK March 16, 2025, 1:59 p.m.
I made a blog post documenting my learning journey with the HDk, attempting to build SOP nodes. Please find it here. Any questions, comments or suggestions are very welcome. https://hakeemadam.info/procedural-tools [hakeemadam.info]
HDK local variables and updating the Viewport Feb. 17, 2025, 11:17 a.m.
For anyone facing similar issues, make sure you bump data ids. See this post from the docs [www.sidefx.com] from reference
[code cpp for (GA_Offset i = 0; i < pointsToDelete.size(); i++)
{
gdp->destroyPointOffset(pointsToDelete(i));
gdp->getAttributes().bumpAllDataIds(GA_ATTRIB_POINT);
gdp->getAttributes().bumpAllDataIds(GA_ATTRIB_VERTEX);
gdp->getAttributes().bumpAllDataIds((GA_ATTRIB_PRIMITIVE));
gdp->getPrimitiveList().bumpDataId();
gdp->normal();
gdp->refreshCachedHandles();
}]
[code cpp for (GA_Offset i = 0; i < pointsToDelete.size(); i++)
{
gdp->destroyPointOffset(pointsToDelete(i));
gdp->getAttributes().bumpAllDataIds(GA_ATTRIB_POINT);
gdp->getAttributes().bumpAllDataIds(GA_ATTRIB_VERTEX);
gdp->getAttributes().bumpAllDataIds((GA_ATTRIB_PRIMITIVE));
gdp->getPrimitiveList().bumpDataId();
gdp->normal();
gdp->refreshCachedHandles();
}]
Accessing binding in functions in OpenCL Feb. 14, 2025, 10:31 a.m.
Thank you both very much. I think my example was a bit misleading. I guess what I am referring to is that in Openl CL, global and parameter bindings are only accessible within the scope of the Kernal. And functions have to be defined outside of the kernel, so you cannot access binding in the scope of the function. For example, I cannot pass @Time to a function I write, not as a function argument. It does make sense in the end.