* [PATCH libdrm] tests: remove missleading comments
@ 2015-12-18 8:14 Stefan Agner
2015-12-18 16:54 ` Jesse Barnes
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Agner @ 2015-12-18 8:14 UTC (permalink / raw)
To: dri-devel
The comment has been copied from modetest and is not applicable
for vbltest.
Signed-off-by: Stefan Agner <stefan@agner.ch>
---
tests/vbltest/vbltest.c | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c
index 531196c..5c61b43 100644
--- a/tests/vbltest/vbltest.c
+++ b/tests/vbltest/vbltest.c
@@ -1,5 +1,5 @@
/*
- * DRM based mode setting test program
+ * DRM based vblank test program
* Copyright 2008 Tungsten Graphics
* Jakob Bornecrantz <jakob@tungstengraphics.com>
* Copyright 2008 Intel Corporation
@@ -24,19 +24,6 @@
* IN THE SOFTWARE.
*/
-/*
- * This fairly simple test program dumps output in a similar format to the
- * "xrandr" tool everyone knows & loves. It's necessarily slightly different
- * since the kernel separates outputs into encoder and connector structures,
- * each with their own unique ID. The program also allows test testing of the
- * memory management and mode setting APIs by allowing the user to specify a
- * connector and mode to use for mode setting. If all works as expected, a
- * blue background should be painted on the monitor attached to the specified
- * connector after the selected mode is set.
- *
- * TODO: use cairo to write the mode info on the selected output once
- * the mode has been programmed, along with possible test patterns.
- */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
--
2.6.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH libdrm] tests: remove missleading comments
2015-12-18 8:14 [PATCH libdrm] tests: remove missleading comments Stefan Agner
@ 2015-12-18 16:54 ` Jesse Barnes
2015-12-18 17:40 ` Emil Velikov
0 siblings, 1 reply; 3+ messages in thread
From: Jesse Barnes @ 2015-12-18 16:54 UTC (permalink / raw)
To: Stefan Agner, dri-devel
On 12/18/2015 12:14 AM, Stefan Agner wrote:
> The comment has been copied from modetest and is not applicable
> for vbltest.
>
> Signed-off-by: Stefan Agner <stefan@agner.ch>
> ---
> tests/vbltest/vbltest.c | 15 +--------------
> 1 file changed, 1 insertion(+), 14 deletions(-)
>
> diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c
> index 531196c..5c61b43 100644
> --- a/tests/vbltest/vbltest.c
> +++ b/tests/vbltest/vbltest.c
> @@ -1,5 +1,5 @@
> /*
> - * DRM based mode setting test program
> + * DRM based vblank test program
> * Copyright 2008 Tungsten Graphics
> * Jakob Bornecrantz <jakob@tungstengraphics.com>
> * Copyright 2008 Intel Corporation
> @@ -24,19 +24,6 @@
> * IN THE SOFTWARE.
> */
>
> -/*
> - * This fairly simple test program dumps output in a similar format to the
> - * "xrandr" tool everyone knows & loves. It's necessarily slightly different
> - * since the kernel separates outputs into encoder and connector structures,
> - * each with their own unique ID. The program also allows test testing of the
> - * memory management and mode setting APIs by allowing the user to specify a
> - * connector and mode to use for mode setting. If all works as expected, a
> - * blue background should be painted on the monitor attached to the specified
> - * connector after the selected mode is set.
> - *
> - * TODO: use cairo to write the mode info on the selected output once
> - * the mode has been programmed, along with possible test patterns.
> - */
> #ifdef HAVE_CONFIG_H
> #include "config.h"
> #endif
Yep, thanks.
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH libdrm] tests: remove missleading comments
2015-12-18 16:54 ` Jesse Barnes
@ 2015-12-18 17:40 ` Emil Velikov
0 siblings, 0 replies; 3+ messages in thread
From: Emil Velikov @ 2015-12-18 17:40 UTC (permalink / raw)
To: Jesse Barnes; +Cc: ML dri-devel
On 18 December 2015 at 16:54, Jesse Barnes <jbarnes@virtuousgeek.org> wrote:
> On 12/18/2015 12:14 AM, Stefan Agner wrote:
>> The comment has been copied from modetest and is not applicable
>> for vbltest.
>>
>> Signed-off-by: Stefan Agner <stefan@agner.ch>
>> ---
>> tests/vbltest/vbltest.c | 15 +--------------
>> 1 file changed, 1 insertion(+), 14 deletions(-)
>>
>> diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c
>> index 531196c..5c61b43 100644
>> --- a/tests/vbltest/vbltest.c
>> +++ b/tests/vbltest/vbltest.c
>> @@ -1,5 +1,5 @@
>> /*
>> - * DRM based mode setting test program
>> + * DRM based vblank test program
>> * Copyright 2008 Tungsten Graphics
>> * Jakob Bornecrantz <jakob@tungstengraphics.com>
>> * Copyright 2008 Intel Corporation
>> @@ -24,19 +24,6 @@
>> * IN THE SOFTWARE.
>> */
>>
>> -/*
>> - * This fairly simple test program dumps output in a similar format to the
>> - * "xrandr" tool everyone knows & loves. It's necessarily slightly different
>> - * since the kernel separates outputs into encoder and connector structures,
>> - * each with their own unique ID. The program also allows test testing of the
>> - * memory management and mode setting APIs by allowing the user to specify a
>> - * connector and mode to use for mode setting. If all works as expected, a
>> - * blue background should be painted on the monitor attached to the specified
>> - * connector after the selected mode is set.
>> - *
>> - * TODO: use cairo to write the mode info on the selected output once
>> - * the mode has been programmed, along with possible test patterns.
>> - */
>> #ifdef HAVE_CONFIG_H
>> #include "config.h"
>> #endif
>
> Yep, thanks.
>
> Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
>
Committed to master. Thanks guys.
-Emil
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-12-18 17:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-18 8:14 [PATCH libdrm] tests: remove missleading comments Stefan Agner
2015-12-18 16:54 ` Jesse Barnes
2015-12-18 17:40 ` Emil Velikov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.