TAARenderPass: Fix runtime error in `dispose()`. (#26991)
* Fix for dispose error
sampleRenderTarget is being deleted and set to null by super.dispose();
the check for undefined was incorrect causing an attempt to call dispose on a null object.
* Removed disposal of sampleRenderTarget entierly