diff options
author | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-20 08:38:06 -0700 |
---|---|---|
committer | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-20 08:38:06 -0700 |
commit | 9134c0e5ff4599137a63b0ebf5dab018f44286e6 (patch) | |
tree | bafa1492a6fe9ff7e00cc6d2d0adcbcd8e9a8e9f /src/va.c | |
parent | de4abcf3c10dca94d4c32a1a14fc5d4e577c97f8 (diff) |
Swapped vaGetConfigAttributes and vaQueryConfigAttributes for API consistency
Diffstat (limited to 'src/va.c')
-rw-r--r-- | src/va.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -477,7 +477,7 @@ VAStatus vaQueryConfigEntrypoints ( return ctx->vtable.vaQueryConfigEntrypoints ( ctx, profile, entrypoints, num_entrypoints); } -VAStatus vaQueryConfigAttributes ( +VAStatus vaGetConfigAttributes ( VADisplay dpy, VAProfile profile, VAEntrypoint entrypoint, @@ -488,8 +488,8 @@ VAStatus vaQueryConfigAttributes ( VADriverContextP ctx = CTX(dpy); ASSERT_CONTEXT(ctx); - TRACE(vaQueryConfigAttributes); - return ctx->vtable.vaQueryConfigAttributes ( ctx, profile, entrypoint, attrib_list, num_attribs ); + TRACE(vaGetConfigAttributes); + return ctx->vtable.vaGetConfigAttributes ( ctx, profile, entrypoint, attrib_list, num_attribs ); } VAStatus vaQueryConfigProfiles ( @@ -533,7 +533,7 @@ VAStatus vaDestroyConfig ( return ctx->vtable.vaDestroyConfig ( ctx, config_id ); } -VAStatus vaGetConfigAttributes ( +VAStatus vaQueryConfigAttributes ( VADisplay dpy, VAConfigID config_id, VAProfile *profile, /* out */ @@ -545,8 +545,8 @@ VAStatus vaGetConfigAttributes ( VADriverContextP ctx = CTX(dpy); ASSERT_CONTEXT(ctx); - TRACE(vaGetConfigAttributes); - return ctx->vtable.vaGetConfigAttributes( ctx, config_id, profile, entrypoint, attrib_list, num_attribs); + TRACE(vaQueryConfigAttributes); + return ctx->vtable.vaQueryConfigAttributes( ctx, config_id, profile, entrypoint, attrib_list, num_attribs); } VAStatus vaCreateSurfaces ( |