Jump to content

Search the Community

Showing results for tags 'GA_PrimCompat'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Lounge/General chat
    • Education
    • Jobs
    • Marketplace
  • Houdini
    • General Houdini Questions
    • Effects
    • Modeling
    • Animation & Rigging
    • Lighting & Rendering + Solaris!
    • Compositing
    • Games
    • Tools (HDA's etc.)
  • Coders Corner
    • HDK : Houdini Development Kit
    • Scripting
    • Shaders
  • Art and Challenges
    • Finished Work
    • Work in Progress
    • VFX Challenge
    • Effects Challenge Archive
  • Systems and Other Applications
    • Other 3d Packages
    • Operating Systems
    • Hardware
    • Pipeline
  • od|force
    • Feedback, Suggestions, Bugs

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Name


Location


Interests

Found 1 result

  1. ... is there some deeper story behind this? GUI_PolySoupBox(const GR_RenderInfo *info, const char *cache_name, const GEO_Primitive *prim); and then GUI_PolySoupBox::GUI_PolySoupBox(const GR_RenderInfo *info, const char *cache_name, const GEO_Primitive *prim) : GR_Primitive(info, cache_name, GA_PrimCompat::TypeMask(0)) ?Still not ticking? Lets continue GR_Primitive constructor takes (const GR_RenderInfo* info, const char* cachename, GEO_PrimTypeCompat::TypeMask primitivetype) GUI_PolySoupBox last argument is const GEO_Primitive *prim and we are setting GR_Primitive last argument as GA_PrimCompat::TypeMask(0) I don't see const GEO_Primitive *prim being used anywhere, but I could miss something, so what's the point?Maybe the point of this is to make something like return new GUI_PolySoupBox(info, cache_name, GA_PrimCompat::TypeMask(prim->getTypeId().get())); instead of return new GUI_PolySoupBox(info, cache_name, prim); ?Every GUI example in HDK docs have this. Thanks! BTW: What is this GA_PrimCompat::TypeMask? Is there some enum anywhere with values for this that I can use? BTW2: Looking at GUI_PolySoupBoxHook::createPrimitive(), there is a check for type of the GEO primitive, then we create new GUI_PolySoupBox() so it would be logical to set GA_PrimCompat::TypeMask instead of passing const GEO_Primitive.
×
×
  • Create New...