blob: 84d7203a805f1dc24b7d73d4be61806f11aed157 [file] [log] [blame]
export const description = `Tests writeTexture validation.`;
import { makeTestGroup } from '../../../../common/framework/test_group.js';
import { GPUConst } from '../../../constants.js';
import { kResourceStates, AllFeaturesMaxLimitsGPUTest } from '../../../gpu_test.js';
import * as vtu from '../validation_test_utils.js';
export const g = makeTestGroup(AllFeaturesMaxLimitsGPUTest);
g.test('texture_state')
.desc(
`
Test that the texture used for GPUQueue.writeTexture() must be valid. Tests calling writeTexture
with {valid, invalid, destroyed} texture.
`
)
.params(u => u.combine('textureState', kResourceStates))
.fn(t => {
const { textureState } = t.params;
const texture = vtu.createTextureWithState(t, textureState);
const data = new Uint8Array(16);
const size = [1, 1];
const isValid = textureState === 'valid';
t.expectValidationError(() => {
t.device.queue.writeTexture({ texture }, data, {}, size);
}, !isValid);
});
g.test('usages')
.desc(
`
Tests calling writeTexture with the texture missed COPY_DST usage.
- texture {with, without} COPY DST usage
`
)
.paramsSubcasesOnly([
{ usage: GPUConst.TextureUsage.COPY_DST }, // control case
{ usage: GPUConst.TextureUsage.STORAGE_BINDING },
{ usage: GPUConst.TextureUsage.STORAGE_BINDING | GPUConst.TextureUsage.COPY_SRC },
{ usage: GPUConst.TextureUsage.STORAGE_BINDING | GPUConst.TextureUsage.COPY_DST },
])
.fn(t => {
const { usage } = t.params;
const texture = t.createTextureTracked({
size: { width: 16, height: 16 },
usage,
format: 'rgba8unorm' as const,
});
const data = new Uint8Array(16);
const size = [1, 1];
const isValid = usage & GPUConst.TextureUsage.COPY_DST ? true : false;
t.expectValidationError(() => {
t.device.queue.writeTexture({ texture }, data, {}, size);
}, !isValid);
});
g.test('sample_count')
.desc(
`
Test that the texture sample count. Check that a validation error is generated if sample count is
not 1.
`
)
.params(u => u.combine('sampleCount', [1, 4]))
.fn(t => {
const { sampleCount } = t.params;
const texture = t.createTextureTracked({
size: { width: 16, height: 16 },
sampleCount,
format: 'bgra8unorm',
usage: GPUTextureUsage.COPY_DST | GPUTextureUsage.RENDER_ATTACHMENT,
});
const data = new Uint8Array(16);
const size = [1, 1];
const isValid = sampleCount === 1;
t.expectValidationError(() => {
t.device.queue.writeTexture({ texture }, data, {}, size);
}, !isValid);
});
g.test('texture,device_mismatch')
.desc('Tests writeTexture cannot be called with a texture created from another device.')
.paramsSubcasesOnly(u => u.combine('mismatched', [true, false]))
.beforeAllSubcases(t => t.usesMismatchedDevice())
.fn(t => {
const { mismatched } = t.params;
const sourceDevice = mismatched ? t.mismatchedDevice : t.device;
const texture = t.trackForCleanup(
sourceDevice.createTexture({
size: { width: 16, height: 16 },
format: 'bgra8unorm',
usage: GPUTextureUsage.COPY_DST | GPUTextureUsage.RENDER_ATTACHMENT,
})
);
const data = new Uint8Array(16);
const size = [1, 1];
t.expectValidationError(() => {
t.device.queue.writeTexture({ texture }, data, {}, size);
}, mismatched);
});