Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated from gpu_test.ts/format_info.ts #4286

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 69 additions & 49 deletions src/webgpu/format_info.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// MAINTENANCE_TODO: Remove all deprecated functions once they are no longer in use.
import { isCompatibilityDevice } from '../common/framework/test_config.js';
import { keysOf } from '../common/util/data_tables.js';
import { assert, unreachable } from '../common/util/util.js';
Expand Down Expand Up @@ -1518,13 +1517,75 @@ type TextureFormatInfo_TypeCheck = {
)
);

// MAINTENANCE_TODO: make this private to avoid tests wrongly trying to
// filter things on their own. Various features make this hard to do correctly
// so we'd prefer to put filtering here, in a central place and add other functions
// to get at this data so that they always have enough info to give the correct answer.
/** Per-GPUTextureFormat info. */
/** @deprecated */
export const kTextureFormatInfo = {
/**
* DO NOT EXPORT THIS - functions that need info from this table should use the appropriate
* method for their needs.
*
* For a list of textures formats for test parameters there are:
*
* Lists of formats that might require features to be enabled
* * kPossibleColorRenderableTextureFormats
* * kPossibleStorageTextureFormats
* * kPossibleReadWriteStorageTextureFormats
* * kPossibleMultisampledTextureFormats
*
* Lists of formats that end in -srgb
* * kDifferentBaseFormatTextureFormats (includes compressed textures)
* * kDifferentBaseFormatRegularTextureFormats (does not include compressed textures)
*
* Formats that require a feature to use at all (mostly compressed formats)
* * kOptionalTextureFormats
*
* Misc
* * kRegularTextureFormats
* * kSizedDepthStencilFormats
* * kUnsizedDepthStencilFormats
* * kCompressedTextureFormats
* * kUncompressedTextureFormats
* * kColorTextureFormats - color formats including compressed and sint/uint
* * kEncodableTextureFormats - formats that TexelView supports.
* * kSizedTextureFormats - formats that have a known size (so not depth24plus ...)
* * kDepthStencilFormats - depth, stencil, depth-stencil
* * kDepthTextureFormats - depth and depth-stencil
* * kStencilTextureFormats - stencil and depth-stencil
* * kAllTextureFormats
*
* If one of the list above does not work, add a new one or to filter in beforeAllSubcases you generally want to use
* You will not know if you can actually use a texture for the given use case until the test runs and has a device.
*
* * isTextureFormatPossiblyUsableAsRenderAttachment
* * isTextureFormatPossiblyUsableAsColorRenderAttachment
* * isTextureFormatPossiblyMultisampled
* * isTextureFormatPossiblyStorageReadable
* * isTextureFormatPossiblyStorageReadWritable
* * isTextureFormatPossiblyFilterableAsTextureF32
*
* These are also usable before or during a test
*
* * isColorTextureFormat
* * isDepthTextureFormat
* * isStencilTextureFormat
* * isDepthOrStencilTextureFormat
* * isEncodableTextureFormat
* * isRegularTextureFormat
* * isCompressedFloatTextureFormat
* * isSintOrUintFormat
*
* To skip a test use the `skipIfXXX` tests in `GPUTest` if possible. Otherwise these functions
* require a device to give a correct answer.
*
* * isTextureFormatUsableAsRenderAttachment
* * isTextureFormatColorRenderable
* * isTextureFormatResolvable
* * isTextureFormatBlendable
* * isTextureFormatMultisampled
* * isTextureFormatUsableAsStorageFormat
* * isTextureFormatUsableAsReadWriteStorageTexture
* * isTextureFormatUsableAsStorageFormatInCreateShaderModule
*
* Per-GPUTextureFormat info.
*/
const kTextureFormatInfo = {
...kRegularTextureFormatInfo,
...kSizedDepthStencilFormatInfo,
...kUnsizedDepthStencilFormatInfo,
Expand Down Expand Up @@ -1801,15 +1862,6 @@ export function textureDimensionAndFormatCompatible(
);
}

/** @deprecated */
export function viewCompatibleDeprecated(
compatibilityMode: boolean,
a: GPUTextureFormat,
b: GPUTextureFormat
): boolean {
return compatibilityMode ? a === b : a === b || a + '-srgb' === b || b + '-srgb' === a;
}

/**
* Check if two formats are view format compatible.
*/
Expand Down Expand Up @@ -2039,11 +2091,6 @@ export function isEncodableTextureFormat(format: GPUTextureFormat) {
return kEncodableTextureFormats.includes(format as EncodableTextureFormat);
}

/** @deprecated use isTextureFormatUsableAsRenderAttachment */
export function canUseAsRenderTargetDeprecated(format: GPUTextureFormat) {
return kTextureFormatInfo[format].colorRender || isDepthOrStencilTextureFormat(format);
}

/**
* Returns if a texture can be used as a render attachment. some color formats and all
* depth textures and stencil textures are usable with usage RENDER_ATTACHMENT.
Expand Down Expand Up @@ -2177,20 +2224,6 @@ export const kCompatModeUnsupportedStorageTextureFormats: readonly GPUTextureFor
'rg32uint',
] as const;

/** @deprecated */
export function isTextureFormatUsableAsStorageFormatDeprecated(
format: GPUTextureFormat,
isCompatibilityMode: boolean
): boolean {
if (isCompatibilityMode) {
if (kCompatModeUnsupportedStorageTextureFormats.indexOf(format) >= 0) {
return false;
}
}
const info = kTextureFormatInfo[format];
return !!(info.color?.storage || info.depth?.storage || info.stencil?.storage);
}

/**
* Return true if the format can be used as a storage texture.
* Note: Some formats can be compiled in a shader but can not be used
Expand Down Expand Up @@ -2285,19 +2318,6 @@ export const kCompatModeUnsupportedMultisampledTextureFormats: readonly GPUTextu
'r32float',
] as const;

/** @deprecated use isTextureFormatMultisampled */
export function isMultisampledTextureFormatDeprecated(
format: GPUTextureFormat,
isCompatibilityMode: boolean
): boolean {
if (isCompatibilityMode) {
if (kCompatModeUnsupportedMultisampledTextureFormats.indexOf(format) >= 0) {
return false;
}
}
return kAllTextureFormatInfo[format].multisample;
}

/**
* Returns true if you can make a multisampled texture from the given format.
*/
Expand Down
Loading