[PATCH vkd3d 2/2] tests: Add offset tests to test_uav_counters().

Henri Verbeet hverbeet at gmail.com
Wed Jun 23 09:07:41 CDT 2021


On Wed, 23 Jun 2021 at 14:32, Conor McCarthy <cmccarthy at codeweavers.com> wrote:
> +    unsigned int tests[] = {0, 1, 255};
> +
static const.

This array would more properly be called "counter_offsets[]", or
perhaps you could do something like the following:

    static const struct
    {
        unsigned int counter_offset;
    }
    tests[] =
    {
        ...
    };



More information about the wine-devel mailing list