@@ -95,7 +95,7 @@ class WebGPUTextures {
9595
9696				if  (  textureProperties . textureGPU  !==  undefined  )  { 
9797
98- 					// TODO: Avoid calling of destroy() in certain scenarios. When only the contents of a texture 
98+ 					// @ TODO 
9999					// are updated, a buffer upload should be sufficient. However, if the user changes 
100100					// the dimensions of the texture, format or usage, a new instance of GPUTexture is required. 
101101
@@ -178,7 +178,7 @@ class WebGPUTextures {
178178					height : height , 
179179					depth : 1 
180180				} , 
181- 				format : GPUTextureFormat . BRGA8Unorm ,  // TODO: Make configurable 
181+ 				format : GPUTextureFormat . BRGA8Unorm ,  // @ TODO 
182182				usage : GPUTextureUsage . OUTPUT_ATTACHMENT  |  GPUTextureUsage . SAMPLED 
183183			}  ) ; 
184184
@@ -201,7 +201,7 @@ class WebGPUTextures {
201201						height : height , 
202202						depth : 1 
203203					} , 
204- 					format : GPUTextureFormat . Depth24PlusStencil8 ,  // TODO: Make configurable 
204+ 					format : GPUTextureFormat . Depth24PlusStencil8 ,  // @ TODO 
205205					usage : GPUTextureUsage . OUTPUT_ATTACHMENT 
206206				}  ) ; 
207207
@@ -342,7 +342,7 @@ class WebGPUTextures {
342342	_copyBufferToTexture (  image ,  format ,  textureGPU  )  { 
343343
344344		// this code assumes data textures in RGBA format 
345- 		// TODO: Consider to support valid buffer layouts with other formats like RGB 
345+ 		// @ TODO 
346346
347347		const  device  =  this . device ; 
348348		const  data  =  image . data ; 
0 commit comments