Skip to content
This repository was archived by the owner on Sep 3, 2019. It is now read-only.

Commit 556e43b

Browse files
committed
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: Aaron Plattner <[email protected]>
1 parent 30ca342 commit 556e43b

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

trace/vdpau_trace.cpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -174,23 +174,6 @@ static void _vdp_cap_dump_color(
174174
);
175175
}
176176

177-
static void _vdp_cap_dump_point(
178-
VdpPoint const * point
179-
)
180-
{
181-
if (!point) {
182-
fprintf(_vdp_cap_data.fp, "NULL");
183-
return;
184-
}
185-
186-
fprintf(
187-
_vdp_cap_data.fp,
188-
"{%u, %u}",
189-
point->x,
190-
point->y
191-
);
192-
}
193-
194177
static void _vdp_cap_dump_rect(
195178
VdpRect const * rect
196179
)

0 commit comments

Comments
 (0)