u_upload_mgr: remove alignment parameter from u_upload_create
[mesa.git] / src / gallium / auxiliary / util / u_upload_mgr.h
index e9fe5faaed88aeeadca5bf25c817bbda32dc1732..54e839bbdff0249f5e56cebc6077ee95e1a4464d 100644 (file)
@@ -43,12 +43,10 @@ struct pipe_resource;
  *
  * \param pipe          Pipe driver.
  * \param default_size  Minimum size of the upload buffer, in bytes.
- * \param alignment     Alignment of each suballocation in the upload buffer.
  * \param bind          Bitmask of PIPE_BIND_* flags.
  */
 struct u_upload_mgr *u_upload_create( struct pipe_context *pipe,
                                       unsigned default_size,
-                                      unsigned alignment,
                                       unsigned bind );
 
 /**