]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/libdrm.git/blob - tests/kmstest/main.c
5df0a383cef7564ba0a1dc056411013aa8fa297f
[glsdk/libdrm.git] / tests / kmstest / main.c
1 /**************************************************************************
2  *
3  * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sub license, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24  * USE OR OTHER DEALINGS IN THE SOFTWARE.
25  *
26  **************************************************************************/
29 #include <stdio.h>
30 #include <string.h>
31 #include "xf86drm.h"
32 #include "libkms.h"
34 #define CHECK_RET_RETURN(ret, str) \
35         if (ret < 0) { \
36                 printf("%s: %s (%s)\n", __func__, str, strerror(-ret)); \
37                 return ret; \
38         }
40 int test_bo(struct kms_driver *kms)
41 {
42         struct kms_bo *bo;
43         int ret;
44         unsigned attrs[7] = {
45                 KMS_WIDTH, 1024,
46                 KMS_HEIGHT, 768,
47                 KMS_BO_TYPE, KMS_BO_TYPE_SCANOUT_X8R8G8B8,
48                 KMS_TERMINATE_PROP_LIST,
49         };
51         ret = kms_bo_create(kms, attrs, &bo);
52         CHECK_RET_RETURN(ret, "Could not create bo");
54         kms_bo_destroy(&bo);
56         return 0;
57 }
59 char *drivers[] = {
60         "i915",
61         "radeon",
62         "nouveau",
63         "vmwgfx",
64         NULL
65 };
67 int main(int argc, char** argv)
68 {
69         struct kms_driver *kms;
70         int ret, fd, i;
72         for (i = 0, fd = -1; fd < 0 && drivers[i]; i++)
73                 fd = drmOpen(drivers[i], NULL);
74         CHECK_RET_RETURN(fd, "Could not open device");
76         ret = kms_create(fd, &kms);
77         CHECK_RET_RETURN(ret, "Failed to create kms driver");
79         ret = test_bo(kms);
80         if (ret)
81                 goto err;
83         printf("%s: All ok!\n", __func__);
85         kms_destroy(&kms);
86         return 0;
88 err:
89         kms_destroy(&kms);
90         return ret;
91 }