diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2005-11-09 05:39:11 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 15:56:34 (GMT) |
commit | 6cc50e1c5b57180fd37a31282000f43859b0fe73 (patch) | |
tree | 109d99a52b1533358445233dd16a5dfadcb618ce /drivers/video/console/Makefile | |
parent | 9c44e5f6c211a9b7313ded897f3135ef7d9ad3e2 (diff) | |
download | linux-fsl-qoriq-6cc50e1c5b57180fd37a31282000f43859b0fe73.tar.xz |
[PATCH] fbcon: Console Rotation - Add support to rotate font bitmap
Add support to rotate the font bitmap. To save on processing time, the entire
fontdata will be rotated on a console switch, then stored in a buffer private
to fbcon. To further save on processing, the fontdata will only be rotated if
the font has changed or if the angle of rotation has changed. Only a single
copy of the rotated fontdata will be kept.
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console/Makefile')
-rw-r--r-- | drivers/video/console/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/console/Makefile b/drivers/video/console/Makefile index 5222628..4532bdf 100644 --- a/drivers/video/console/Makefile +++ b/drivers/video/console/Makefile @@ -31,6 +31,9 @@ obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon.o bitblit.o font.o softcursor.o ifeq ($(CONFIG_FB_TILEBLITTING),y) obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += tileblit.o endif +ifeq ($(CONFIG_FRAMEBUFFER_CONSOLE_ROTATION),y) +obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon_rotate.o +endif obj-$(CONFIG_FB_STI) += sticore.o font.o |