Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Associating GUID (or UUID) with types #1776

Merged
merged 46 commits into from
Apr 1, 2021

Conversation

jsmall-zzz
Copy link
Contributor

  • Added macros SLANG_COM_INTERFACE and SLANG_CLASS_GUID that can be used to setup a guid in interface/class
  • Made the #define SLANG_UUID_ just use the other macros
  • Removed the places where guids where defined in C++ files as no longer required

This wasn't a new idea - it's covered in #1645

The main observation is that whilst it's not possible to define a Guid directly within an interface, without it being implemented in a C++ file, it is possible to do so within a function. If we inline the function we get much the same effect - although there are no assurances around what the pointers will be across files.

I tested on compiler explorer, and all major compiler do correctly inline and behave as if it is a global in release.

I did not replace in gfx until deemed appropriate and since lots of changes there.

# Conflicts:
#	source/slang/slang-include-system.cpp
Copy link
Contributor

@tangent-vector tangent-vector left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks pretty good, although I suppose there is a chance that a client would rather embed the GUIDs/UUIDs (I'm never totally clear on the distinction, but I know that UUID tends to be used outside of the Microsoft ecosystem) into their application via their own approach rather than rely on the accessor functions generated here. We can probably cross that bridge when we come to it, since the convenience here is high.

One other thing is that we could consider having another case of as<T> for ISlangUnknown-derived types that calls queryInterface with T::getTypeGuid() to streamline some of the casting sites. Not a real priority any time soon, though.

@csyonghe csyonghe merged commit 9475b11 into shader-slang:master Apr 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants