How to clear images?

Are there any means for clearing images (introduces by ext_image_load_store extension) other than implementing an additional shader pass, which clears it manually?
Is there some analogue to glClear command?

attach the texture image to a FBO and use glClearBuffer{i|f|ui}.

thanks!