Robert Osfield

Results 291 comments of Robert Osfield

As a general comment, this issue sounds with using RenderGraph/RenderPass to target a portion of window and failing is something we've hit up against before. For what I recall some...

I've just looked up the github history for vsgmultiviews example - I originally wrote it with both a multiple RenderGraph code path and a multiple vsg::View within a single RenderGraph...

I have just had a look at vsg::Builder and I don't even see a default constructor, let alone a copy operator or copy constructor. I don't think there is particular...

I have added a default constructor to see if it affects your build and need to include Options.h d599ee2eef1183983a99758f48b2715dd2dc7b4e. This change is checked into VSG master. Could you try it...

Forward declaration is typically used to avoid circular references in the headers or to keep the include count down. The need to include is something that has been present with...

I tried an experiment on my Kubuntu 22.04 systems with g++ 11.4.0 and a modified include/vsg/core/Export.h with: ~~~ cpp # define VSG_DECLSPEC __attribute__ ((visibility ("default"))) ~~~ But the library and...

To help resolve the immediate issue I have put in explicit deletion of the copy constructor and assignment operation: e0cc165658b77566df7f56d709269b70820ef17e Could you try this out with vsgPhysX in the various...

I didn't know that the FIND_PACKAGE_ARGS was able to trigger a find_package instead of pulling down the repo, thanks for the tip. I just pull in cmake from apt-get so...

I'm not in position to look into this, but hopefully will be able to reproduce it and ponder on how best to resolve it in the next few weeks.

I have seen issues with the Assimp's dxf loader but haven't had a chance to investigate. It may be that we need to write a dedicated loader for some formats...