@@ -44,8 +44,6 @@ pub enum CreateTlasError {
4444    CreateBufferError ( #[ from]   CreateBufferError ) , 
4545    #[ error( "Features::RAY_TRACING_ACCELERATION_STRUCTURE is not enabled" ) ]  
4646    MissingFeature , 
47-     #[ error( "Unimplemented Tlas error: this error is not yet implemented" ) ]  
48-     Unimplemented , 
4947} 
5048
5149/// Error encountered while attempting to do a copy on a command encoder. 
@@ -132,9 +130,6 @@ pub enum BuildAccelerationStructureError {
132130    #[ error( "BlasId is invalid or destroyed (for instance)" ) ]  
133131    InvalidBlasIdForInstance , 
134132
135-     #[ error( "Blas {0:?} is invalid or destroyed (for instance)" ) ]  
136-     InvalidBlasForInstance ( ResourceErrorIdent ) , 
137- 
138133    #[ error( "TlasId is invalid or destroyed" ) ]  
139134    InvalidTlasId , 
140135
@@ -150,18 +145,12 @@ pub enum BuildAccelerationStructureError {
150145
151146#[ derive( Clone ,  Debug ,  Error ) ]  
152147pub  enum  ValidateBlasActionsError  { 
153-     #[ error( "BlasId is invalid or destroyed" ) ]  
154-     InvalidBlas , 
155- 
156148    #[ error( "Blas {0:?} is used before it is built" ) ]  
157149    UsedUnbuilt ( ResourceErrorIdent ) , 
158150} 
159151
160152#[ derive( Clone ,  Debug ,  Error ) ]  
161153pub  enum  ValidateTlasActionsError  { 
162-     #[ error( "Tlas {0:?} is invalid or destroyed" ) ]  
163-     InvalidTlas ( ResourceErrorIdent ) , 
164- 
165154    #[ error( "Tlas {0:?} is used before it is built" ) ]  
166155    UsedUnbuilt ( ResourceErrorIdent ) , 
167156
0 commit comments