Skip to content

Commit 459e788

Browse files
author
Tim Foley
authored
Remove some "do what I mean" logic from reflection API (shader-slang#1539)
The reflection API had a bit of DWIM (Do What I Mean) logic in that a client could query the resource usage/bindings of a `ParameterBlock<X>` and see not only the register `space` or descriptor `set` for the block itself, but also the constant buffer `register` or `binding` for its default constant buffer (if any). The reason for this behavior was that there was existing client code in Falcor that relied on that behavior for parameter blocks, and even after changing the way that parameter block layouts were computed and stored we sought to maintain backwards compatibility with that client code. The trouble is that the weird behavior then goes on to cause confusion for other clients of the Slang reflection API. This change removes the special-case logic, and fixes up our reflection tests to mirror the new (correct) information that we return. When this change is released, it will be a breaking change for any client code that still relies on the old behavior. We will need to coordinate with client application developers to fix their reflection logic. Note that all the same information can still be accessed, simply by using new reflection API that we have added.
1 parent e5b796d commit 459e788

4 files changed

+10
-41
lines changed

source/slang/slang-reflection.cpp

-20
Original file line numberDiff line numberDiff line change
@@ -831,27 +831,11 @@ static SlangParameterCategory getParameterCategory(
831831
return SLANG_PARAMETER_CATEGORY_MIXED;
832832
}
833833

834-
static TypeLayout* maybeGetContainerLayout(TypeLayout* typeLayout)
835-
{
836-
if (auto parameterGroupTypeLayout = as<ParameterGroupTypeLayout>(typeLayout))
837-
{
838-
auto containerTypeLayout = parameterGroupTypeLayout->containerVarLayout->typeLayout;
839-
if (containerTypeLayout->resourceInfos.getCount() != 0)
840-
{
841-
return containerTypeLayout;
842-
}
843-
}
844-
845-
return typeLayout;
846-
}
847-
848834
SLANG_API SlangParameterCategory spReflectionTypeLayout_GetParameterCategory(SlangReflectionTypeLayout* inTypeLayout)
849835
{
850836
auto typeLayout = convert(inTypeLayout);
851837
if(!typeLayout) return SLANG_PARAMETER_CATEGORY_NONE;
852838

853-
typeLayout = maybeGetContainerLayout(typeLayout);
854-
855839
return getParameterCategory(typeLayout);
856840
}
857841

@@ -860,8 +844,6 @@ SLANG_API unsigned spReflectionTypeLayout_GetCategoryCount(SlangReflectionTypeLa
860844
auto typeLayout = convert(inTypeLayout);
861845
if(!typeLayout) return 0;
862846

863-
typeLayout = maybeGetContainerLayout(typeLayout);
864-
865847
return (unsigned) typeLayout->resourceInfos.getCount();
866848
}
867849

@@ -870,8 +852,6 @@ SLANG_API SlangParameterCategory spReflectionTypeLayout_GetCategoryByIndex(Slang
870852
auto typeLayout = convert(inTypeLayout);
871853
if(!typeLayout) return SLANG_PARAMETER_CATEGORY_NONE;
872854

873-
typeLayout = maybeGetContainerLayout(typeLayout);
874-
875855
return typeLayout->resourceInfos[index].kind;
876856
}
877857

tests/reflection/mix-explicit-and-implicit-spaces.slang.expected

+3-12
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ standard output = {
66
"parameters": [
77
{
88
"name": "a",
9-
"bindings": [
10-
{"kind": "constantBuffer", "index": 0, "count": 0},
11-
{"kind": "registerSpace", "index": 0}
12-
],
9+
"binding": {"kind": "registerSpace", "index": 0},
1310
"type": {
1411
"kind": "parameterBlock",
1512
"elementType": {
@@ -53,10 +50,7 @@ standard output = {
5350
},
5451
{
5552
"name": "b",
56-
"bindings": [
57-
{"kind": "constantBuffer", "index": 0, "count": 0},
58-
{"kind": "registerSpace", "index": 1}
59-
],
53+
"binding": {"kind": "registerSpace", "index": 1},
6054
"type": {
6155
"kind": "parameterBlock",
6256
"elementType": {
@@ -100,10 +94,7 @@ standard output = {
10094
},
10195
{
10296
"name": "c",
103-
"bindings": [
104-
{"kind": "constantBuffer", "index": 0, "count": 0},
105-
{"kind": "registerSpace", "index": 2}
106-
],
97+
"binding": {"kind": "registerSpace", "index": 2},
10798
"type": {
10899
"kind": "parameterBlock",
109100
"elementType": {

tests/reflection/parameter-block-explicit-space.slang.expected

+2-8
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ standard output = {
66
"parameters": [
77
{
88
"name": "a",
9-
"bindings": [
10-
{"kind": "constantBuffer", "index": 0, "count": 0},
11-
{"kind": "registerSpace", "index": 2}
12-
],
9+
"binding": {"kind": "registerSpace", "index": 2},
1310
"type": {
1411
"kind": "parameterBlock",
1512
"elementType": {
@@ -111,10 +108,7 @@ standard output = {
111108
},
112109
{
113110
"name": "b",
114-
"bindings": [
115-
{"kind": "constantBuffer", "index": 0, "count": 0},
116-
{"kind": "registerSpace", "index": 3}
117-
],
111+
"binding": {"kind": "registerSpace", "index": 3},
118112
"type": {
119113
"kind": "parameterBlock",
120114
"elementType": {

tests/reflection/resource-in-cbuffer.hlsl.expected

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ standard output = {
66
"parameters": [
77
{
88
"name": "MyConstantBuffer",
9-
"binding": {"kind": "constantBuffer", "index": 0},
9+
"bindings": [
10+
{"kind": "constantBuffer", "index": 0},
11+
{"kind": "shaderResource", "index": 0},
12+
{"kind": "samplerState", "index": 0}
13+
],
1014
"type": {
1115
"kind": "constantBuffer",
1216
"elementType": {

0 commit comments

Comments
 (0)