Commit 556e43bf authored by Aaron Plattner's avatar Aaron Plattner
Browse files

trace: delete unused _vdp_cap_dump_point



Nothing actually uses VdpPoint, so this tracing function was never called.  I
left the VdpPoint type in vdpau.h for now, just in case anyone actually uses it
themselves.
Signed-off-by: default avatarAaron Plattner <aplattner@nvidia.com>
parent 30ca3427
......@@ -174,23 +174,6 @@ static void _vdp_cap_dump_color(
);
}
static void _vdp_cap_dump_point(
VdpPoint const * point
)
{
if (!point) {
fprintf(_vdp_cap_data.fp, "NULL");
return;
}
fprintf(
_vdp_cap_data.fp,
"{%u, %u}",
point->x,
point->y
);
}
static void _vdp_cap_dump_rect(
VdpRect const * rect
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment