summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/compat/api/validation/render_pipeline/vertex_state.spec.ts
blob: ef72c50ce9b84fa61498d05fc4f5edbc80849a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
export const description = `
Tests limitations of createRenderPipeline related to vertex state in compat mode.
`;

import { makeTestGroup } from '../../../../../common/framework/test_group.js';
import { range } from '../../../../../common/util/util.js';
import { CompatibilityTest } from '../../../compatibility_test.js';

export const g = makeTestGroup(CompatibilityTest);

g.test('maxVertexAttributesVertexIndexInstanceIndex')
  .desc(
    `
Tests @builtin(vertex_index) and @builtin(instance_index) each count as an attribute.

- Test that you can use maxVertexAttributes
- Test that you can not use maxVertexAttributes and @builtin(vertex_index)
- Test that you can not use maxVertexAttributes and @builtin(instance_index)
- Test that you can use maxVertexAttributes - 1 and @builtin(vertex_index)
- Test that you can use maxVertexAttributes - 1 and @builtin(instance_index)
- Test that you can not use maxVertexAttributes - 1 and both @builtin(vertex_index) and @builtin(instance_index)
- Test that you can use maxVertexAttributes - 2 and both @builtin(vertex_index) and @builtin(instance_index)
    `
  )
  .params(u =>
    u
      .combine('useVertexIndex', [false, true] as const)
      .combine('useInstanceIndex', [false, true] as const)
      .combine('numAttribsToReserve', [0, 1, 2] as const)
      .combine('isAsync', [false, true] as const)
  )
  .fn(t => {
    const { useVertexIndex, useInstanceIndex, numAttribsToReserve, isAsync } = t.params;
    const numAttribs = t.device.limits.maxVertexAttributes - numAttribsToReserve;

    const numBuiltinsUsed = (useVertexIndex ? 1 : 0) + (useInstanceIndex ? 1 : 0);
    const isValid = numAttribs + numBuiltinsUsed <= t.device.limits.maxVertexAttributes;

    const inputs = range(numAttribs, i => `@location(${i}) v${i}: vec4f`);
    const outputs = range(numAttribs, i => `v${i}`);

    if (useVertexIndex) {
      inputs.push('@builtin(vertex_index) vNdx: u32');
      outputs.push('vec4f(f32(vNdx))');
    }

    if (useInstanceIndex) {
      inputs.push('@builtin(instance_index) iNdx: u32');
      outputs.push('vec4f(f32(iNdx))');
    }

    const module = t.device.createShaderModule({
      code: `
        @fragment fn fs() -> @location(0) vec4f {
            return vec4f(1);
        }
        @vertex fn vs(${inputs.join(', ')}) -> @builtin(position) vec4f {
            return ${outputs.join(' + ')};
        }
      `,
    });

    const pipelineDescriptor: GPURenderPipelineDescriptor = {
      layout: 'auto',
      vertex: {
        module,
        entryPoint: 'vs',
        buffers: [
          {
            arrayStride: 16,
            attributes: range(numAttribs, i => ({
              shaderLocation: i,
              format: 'float32x4',
              offset: 0,
            })),
          },
        ],
      },
      fragment: {
        module,
        entryPoint: 'fs',
        targets: [
          {
            format: 'rgba8unorm',
          },
        ],
      },
    };

    t.doCreateRenderPipelineTest(isAsync, isValid, pipelineDescriptor);
  });