Delete commented out code in pixman-vmx.c
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Fri, 7 Aug 2009 16:00:07 +0000 (12:00 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Sat, 8 Aug 2009 22:50:19 +0000 (18:50 -0400)
pixman/pixman-vmx.c

index b52803d..06325a7 100644 (file)
@@ -1607,82 +1607,6 @@ vmx_combine_add_ca (pixman_implementation_t *imp,
     }
 }
 
-#if 0
-void
-vmx_composite_over_n_8888 (pixman_operator_t op,
-                           pixman_image_t *  src_image,
-                           pixman_image_t *  mask_image,
-                           pixman_image_t *  dst_image,
-                           int16_t           src_x,
-                           int16_t           src_y,
-                           int16_t           mask_x,
-                           int16_t           mask_y,
-                           int16_t           dest_x,
-                           int16_t           dest_y,
-                           uint16_t          width,
-                           uint16_t          height)
-{
-    uint32_t src;
-    uint32_t    *dst_line, *dst;
-    int dst_stride;
-
-    _pixman_image_get_solid (src_image, dst_image, src);
-
-    if (src >> 24 == 0)
-       return;
-
-    PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1);
-    while (height--)
-    {
-       dst = dst_line;
-       dst_line += dst_stride;
-       /* XXX vmx_combine_over_u (dst, src, width); */
-    }
-}
-
-void
-vmx_composite_over_n_0565 (pixman_operator_t op,
-                           pixman_image_t *  src_image,
-                           pixman_image_t *  mask_image,
-                           pixman_image_t *  dst_image,
-                           int16_t           src_x,
-                           int16_t           src_y,
-                           int16_t           mask_x,
-                           int16_t           mask_y,
-                           int16_t           dest_x,
-                           int16_t           dest_y,
-                           uint16_t          width,
-                           uint16_t          height)
-{
-    uint32_t src;
-    uint16_t    *dst_line, *dst;
-    uint16_t w;
-    int dst_stride;
-
-    _pixman_image_get_solid (src_image, dst_image, src);
-
-    if (src >> 24 == 0)
-       return;
-
-    PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1);
-
-    while (height--)
-    {
-       dst = dst_line;
-       dst_line += dst_stride;
-       vmx_combine_over_u565 (dst, src, width);
-    }
-}
-
-static const pixman_fast_path_t vmx_fast_path_array[] =
-{
-    { PIXMAN_OP_NONE },
-};
-
-const pixman_fast_path_t *const vmx_fast_paths = vmx_fast_path_array;
-
-#endif
-
 pixman_implementation_t *
 _pixman_implementation_create_vmx (void)
 {