From 245c838bd3069f0d264eac361dc8d33aac804a66 Mon Sep 17 00:00:00 2001 From: Christopher Cameron Date: Tue, 9 Jul 2024 13:11:11 -0400 Subject: [PATCH] Replace default with standard --- EXPLAINER.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/EXPLAINER.md b/EXPLAINER.md index bfbd979..58c54d6 100644 --- a/EXPLAINER.md +++ b/EXPLAINER.md @@ -35,7 +35,6 @@ accurate characterization of the behavior of all implemenations is: > E.g, the color value (1.09,-0.23,-0.15) in an 'srgb' canvas will produce > the same color as the color value (1,0,0) in 'display-p3' canvas. - ## Goal The goal of this proposal is to provide a mechanism through which a WebGPU @@ -48,12 +47,12 @@ Add the following new dictionaries. ```webidl enum GPUCanvasToneMappingMode { - "default", + "standard", "extended", }; dictionary GPUCanvasToneMapping { - GPUCanvasToneMappingMode mode = "default"; + GPUCanvasToneMappingMode mode = "standard"; }; partial dictionary GPUCanvasConfiguration {