summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/api/operation/reflection.spec.ts
blob: a1fc9cdc21522f3c95c716b98c786a63227f4f82 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
export const description = `
Tests that object attributes which reflect the object's creation properties are properly set.
`;

import { makeTestGroup } from '../../../common/framework/test_group.js';
import { GPUConst } from '../../constants.js';
import { GPUTest } from '../../gpu_test.js';

export const g = makeTestGroup(GPUTest);

g.test('buffer_reflection_attributes')
  .desc(`For every buffer attribute, the corresponding descriptor value is carried over.`)
  .paramsSubcasesOnly(u =>
    u.combine('descriptor', [
      { size: 4, usage: GPUConst.BufferUsage.VERTEX },
      {
        size: 16,
        usage:
          GPUConst.BufferUsage.STORAGE |
          GPUConst.BufferUsage.COPY_SRC |
          GPUConst.BufferUsage.UNIFORM,
      },
      { size: 32, usage: GPUConst.BufferUsage.MAP_READ | GPUConst.BufferUsage.COPY_DST },
      {
        size: 32,
        usage: GPUConst.BufferUsage.MAP_READ | GPUConst.BufferUsage.MAP_WRITE,
        invalid: true,
      },
    ] as const)
  )
  .fn(async t => {
    const { descriptor } = t.params;

    t.expectValidationError(() => {
      const buffer = t.device.createBuffer(descriptor);

      t.expect(buffer.size === descriptor.size);
      t.expect(buffer.usage === descriptor.usage);
    }, descriptor.invalid === true);
  });

g.test('texture_reflection_attributes')
  .desc(`For every texture attribute, the corresponding descriptor value is carried over.`)
  .paramsSubcasesOnly(u =>
    u.combine('descriptor', [
      {
        size: { width: 4, height: 4 },
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.TEXTURE_BINDING,
      },
      {
        size: { width: 8, height: 8, depthOrArrayLayers: 8 },
        format: 'bgra8unorm',
        usage: GPUConst.TextureUsage.RENDER_ATTACHMENT | GPUConst.TextureUsage.COPY_SRC,
      },
      {
        size: [4, 4],
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.TEXTURE_BINDING,
        mipLevelCount: 2,
      },
      {
        size: [16, 16, 16],
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.TEXTURE_BINDING,
        dimension: '3d',
      },
      {
        size: [32],
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.TEXTURE_BINDING,
        dimension: '1d',
      },
      {
        size: { width: 4, height: 4 },
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.RENDER_ATTACHMENT,
        sampleCount: 4,
      },
      {
        size: { width: 4, height: 4 },
        format: 'rgba8unorm',
        usage: GPUConst.TextureUsage.TEXTURE_BINDING,
        sampleCount: 4,
        invalid: true,
      },
    ] as const)
  )
  .fn(async t => {
    const { descriptor } = t.params;

    let width: number;
    let height: number;
    let depthOrArrayLayers: number;
    if (Array.isArray(descriptor.size)) {
      width = descriptor.size[0];
      height = descriptor.size[1] || 1;
      depthOrArrayLayers = descriptor.size[2] || 1;
    } else {
      width = (descriptor.size as GPUExtent3DDict).width;
      height = (descriptor.size as GPUExtent3DDict).height || 1;
      depthOrArrayLayers = (descriptor.size as GPUExtent3DDict).depthOrArrayLayers || 1;
    }

    t.expectValidationError(() => {
      const texture = t.device.createTexture(descriptor);

      t.expect(texture.width === width);
      t.expect(texture.height === height);
      t.expect(texture.depthOrArrayLayers === depthOrArrayLayers);
      t.expect(texture.format === descriptor.format);
      t.expect(texture.usage === descriptor.usage);
      t.expect(texture.dimension === (descriptor.dimension || '2d'));
      t.expect(texture.mipLevelCount === (descriptor.mipLevelCount || 1));
      t.expect(texture.sampleCount === (descriptor.sampleCount || 1));
    }, descriptor.invalid === true);
  });

g.test('query_set_reflection_attributes')
  .desc(`For every queue attribute, the corresponding descriptor value is carried over.`)
  .paramsSubcasesOnly(u =>
    u.combine('descriptor', [
      { type: 'occlusion', count: 4 },
      { type: 'occlusion', count: 16 },
      { type: 'occlusion', count: 8193, invalid: true },
    ] as const)
  )
  .fn(async t => {
    const { descriptor } = t.params;

    t.expectValidationError(() => {
      const querySet = t.device.createQuerySet(descriptor);

      t.expect(querySet.type === descriptor.type);
      t.expect(querySet.count === descriptor.count);
    }, descriptor.invalid === true);
  });