HomeSort by relevance Sort by last modified time
    Searched defs:surface_type_id (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_context.c 39 int surface_type_id; local
55 &surface_type_id,
72 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, NULL) == XvMCBadContext);
75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort);
79 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, -1, &context) == BadValue);
81 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, height, XVMC_DIRECT, &context) == BadValue);
83 assert(XvMCCreateContext(display, port_num, surface_type_id, width, 16384, XVMC_DIRECT, &context) == BadValue);
85 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, 16384, XVMC_DIRECT, &context) == BadValue);
87 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
91 assert(context.surface_type_id == surface_type_id)
    [all...]