Compare commits

...

2 Commits

Author SHA1 Message Date
Kai Blaschke
2fd65e8a8e
Update issue template for general questions
Add a note pointing to the discussion boards instead of opening an issue.

Signed-off-by: Kai Blaschke <kai.blaschke@kb-dev.net>
2025-10-28 17:20:45 +01:00
Kai Blaschke
394106bfd4
Add missing "distance" intrinsic to HLSLparser
Signed-off-by: Kai Blaschke <kai.blaschke@kb-dev.net>
2025-10-28 16:43:35 +01:00
2 changed files with 12 additions and 0 deletions

View File

@ -6,7 +6,14 @@ body:
- type: markdown
attributes:
value: |
### Prefer using the discussion boards
If your question or suggestion may result in a longer discussion or the answer may interest others, it might be a better idea to open a topic [in one of our discussion forums](https://github.com/orgs/projectM-visualizer/discussions).
Questions answered in the boards can be marked accordingly and others may find it easier than by searching through closed issues.
### Requests regarding the projectM Android App
Note that **we cannot answer questions regarding the Android apps** in the Google Play Store. These apps are not being developed by the projectM team. Please contact the app author directly via the information provided in the Play Store.
- type: checkboxes
id: reporter_ack

View File

@ -478,6 +478,11 @@ const Intrinsic _intrinsic[] =
Intrinsic( "length", HLSLBaseType_Float, HLSLBaseType_Float3 ),
Intrinsic( "length", HLSLBaseType_Float, HLSLBaseType_Float4 ),
Intrinsic( "distance", HLSLBaseType_Float, HLSLBaseType_Float , HLSLBaseType_Float ),
Intrinsic( "distance", HLSLBaseType_Float, HLSLBaseType_Float2, HLSLBaseType_Float2 ),
Intrinsic( "distance", HLSLBaseType_Float, HLSLBaseType_Float3, HLSLBaseType_Float3 ),
Intrinsic( "distance", HLSLBaseType_Float, HLSLBaseType_Float4, HLSLBaseType_Float4 ),
INTRINSIC_FLOAT2_FUNCTION( "max" ),
INTRINSIC_FLOAT2_FUNCTION( "min" ),