summaryrefslogtreecommitdiff
path: root/apps/examples/nximage/Kconfig
blob: 72ed5c8dd2d7f26f098e3e9dce279110e291963c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_NXIMAGE
	bool "NX graphics image example"
	default n
	---help---
		Enable the X graphics image example

if EXAMPLES_NXIMAGE

config EXAMPLES_NXIMAGE_VPLANE
        int "Video Plane"
        default 0
        ---help---
                The plane to select from the framebuffer driver for use in the test.
                Default: 0

config EXAMPLES_NXIMAGE_DEVNO
        int "Video Device Number"
        default 0
        ---help---
                The LCD device to select from the LCD driver for use in the test:
                Default: 0

config EXAMPLES_NXIMAGE_BPP
        int "Bits-Per-Pixel"
        default 32
        ---help---
                Pixels per pixel to use.  Valid options include 1, 2, 4, 8, 16, 24,
                and 32.  Default is 32.

config EXAMPLES_NXIMAGE_XSCALEp5
        bool "Scale X by 50%"
        default n
        ---help---
                Reduce image scale by 50% of its original size.

config EXAMPLES_NXIMAGE_XSCALE1p0
        bool "Don't scale image."
        default y
        ---help---
                Keep original image size.

config EXAMPLES_NXIMAGE_XSCALE1p5
        bool "Scale X by 150%"
        default n
        ---help---
                Increase image scale by 50% of its original size.

config EXAMPLES_NXIMAGE_XSCALE2p0
        bool "Scale X by 200%"
        default n
        ---help---
                Increase image scale by 200% of its original size.

config EXAMPLES_NXIMAGE_YSCALEp5
        bool "Scale Y by 50%"
        default n
        ---help---
                Reduce image scale by 50% of its original size.

config EXAMPLES_NXIMAGE_YSCALE1p0
        bool "Don't scale image."
        default y
        ---help---
                Keep original image size.

config EXAMPLES_NXIMAGE_YSCALE1p5
        bool "Scale Y by 150%"
        default n
        ---help---
                Increase image scale by 50% of its original size.

config EXAMPLES_NXIMAGE_YSCALE2p0
        bool "Scale Y by 200%"
        default n
        ---help---
                Increase image scale by 200% of its original size.

endif