You are on page 1of 9

TERM PAPER REPORT

MULTIMEDIA COMMUNICATIONS

Discuss Technology behind Multi Screen


Discuss technology behind Multi screen

NavjotPal Kaur
RG1007B33
M. Tech (CSE),LPU

Abstract - This paper describes the video card with special equipment that
Multi screen technology that is widely supports multiple monitors.
used nowadays to improve (increase) the
productivity. We have discussed the
II. CONFIGURATION &
configuration and placement of multiple
PLACEMENT
monitors on single PC, on multiple PCs,
different display modes, softwares
Single PC multi-monitor
required, the advantages and
disadvantages of using multiple screens A multiple monitor setup increases the

and so on. net display area of a system and can be an


inexpensive way of improving computer
usage. Resulting display area after
I. INTRODUCTION upgrading to a multi-monitor
Multi-Monitor, also called Multi- configuration is limited by the size,
Display, Multi-Head, Dual-Display, resolution and number of monitors. The
and Dual-Monitor, is the use of multiple monitors used for multi-monitor can be
physical display devices, such different types (LCD or CRT) and sizes.
as monitors, television, and projectors, in The operating system manages the
order to increase the area available monitors' resolutions independently.
for computer programs running on a
A "Dual Head" configuration utilizes a
single computer system. Microsoft descri
video card that supports two discrete
bes this setup as "one of the best ways to
outputs. Users may also utilize two
improve productivity".
discrete video cards, and sometimes even
Attaching multiple monitors to a single
an integrated motherboard video socket
CPU is fairly simple. What you'll need is
plus a second video card, though often the
either a second video card, or a special
motherboard disables the integrated video
when a discrete video card is used (a from one to the other on screen edges
limitation that was common on older as if they were one machine. This
chipsets featuring allows each machine to be doing a
integrated AGP graphics and an AGP different task, freeing up resources.
upgrade slot). An additional and different approach to
Additional monitors can also be multiple monitor systems involves using
connected to PCs via a USB connection the monitors of networked computers to
such as DisplayLink. display the output of a central computer.
By using the graphic cards of the
networked computers, stability and speed
are dramatically enhanced. This is often a
preferred choice for systems in which
adding additional graphics cards is
problematic, such as laptops.

The additional monitors can be


extensions of the desktop or mirrors of
the central display. The arrangement of
these monitors can be configured within
the properties tab in the windows display
dialog box, making horizontal, vertical, or
other monitor configurations possible.
Further, because the additional monitors
are powered by networked computers,
Multiple PC multi-monitor they can be located wherever the network
Software such as Maxivista for reaches, both wireless and hardwired.
Windows and ScreenRecycler for Mac
III. DISPLAY MODES
OS X let you set up multiple PC multi-
monitor mode through virtual display Clone mode
drivers and client-side software.
Since before personal computers
Similarly, software such as
existed, video signals have been spilt with
InputDirector or Synergy allows one to
simple Y-adapters to provide duplicate
use multiple PCs, each with their own
signals to multiple monitors for various
monitor or monitors, and transition
reasons. When personal computers came
to have video outputs, this naturally alongside its 80-column capable output
carried over—sometimes for the purpose on another.
of presentation, and sometimes to provide
a different representation of the same
Span or extended desktop mode
output (for example color alongside the
higher resolution monochrome Most—if not all—current multi-head

interpretation of the output of an Apple video cards are able to "span" a single

II). Later systems—particularly portable frame buffer across two monitors. The

machines with built-in displays— result is one large rectangular desktop

provided built-in redundant outputs for space, of double either the horizontal or

this. Even later systems, in addition to vertical resolution. (For example, when

being capable of the discrete modes two 1024x768 displays are used, they can

described below, are able to mimic this have a virtual resolution of either

"cloning" or "mirroring" behaviour. 2048x768 or 1024x1536.) Both monitors


operate at the same resolution and depth

Multi-mode settings, and usually the same refresh


rate. This mode requires very minimal
In the early days of the IBM-PC and its
operating system support, as the total
clones, there were two main types of
display area is a simple rectangle.
display adapter: color (CGA, EGA) and
monochrome (MGA). Since these devices In "extended" mode, additional desktop
used fixed areas of the 1MiB address area is created by giving each monitor its
space of the 8086/8088 CPU, it was not own frame buffer. The result is a virtual
possible to have more than one of the desktop space comprising multiple
same type in a machine. However, since adjacent, but not necessarily aligned,
color adapters used a different space than rectangular areas. In this considerably
monochrome, one of each could coexist. more flexible configuration, each monitor
This led to systems using a CGA or EGA can be of different resolution, depth, and
for color graphics, and an MGA for refresh rate; and the desktop area is not
monochrome text, on side-by-side necessarily rectangular. This mode is
monitors. actually older than spanning—first
appearing in 1986,
The Commodore 128 was capable of
when Radius introduced the Full Page
similar behavior using its C64 compatible
Display for the Macintosh Plus (which
output for graphics on one monitor,
was a dramatic increase over the cards, this mode is being phased out
machine's 9" built-in display). because it does not make very good use
of GPU parallelism, and does not support
Both of these modes present the display
arbitrary arrangements of monitors (they
space to the user as a contiguous area,
must all be horizontal). A more recent
allowing objects to be moved between, or
technique uses the wglShareLists feature
even straddled across displays as if they
of OpenGL to share data across multiple
are one.
GPUs, and then render to each individual
Some problems occur when you want to
monitor's frame buffer.
define one large spanned view of two
• The Hardware Component
1024x768 displays into one 2048x768
display in Windows Vista and Windows Your computer uses video display
7 since only extended desktop are hardware to convert computer
information into something that can be
supported and spanned resolutions are
displayed on a monitor or laptop screen.
non-existing in many applications such as
The video display is either on a special
games and presentation video card or is built into the computer
software. Windows XP supports both itself.
spanning and extended desktops through
All laptops and some desktops have
older NVidia and ATI drivers. built-in or on-board video.

IV. PROGRAMMING To have true multiple monitor support,


the video display (which we'll refer to as
Programming multiple monitors is "video hardware" from now on) must
challenging because each screen will have support multiple monitors and must allow
independent resolution and color depth
its own graphics buffer. One possible
settings for each. But as you'll see later,
scenario for programming is to present to
there are other types of multiple monitor
OpenGL or DirectX a continuous, virtual support that are less flexible but still
frame buffer in which the OS or graphics useful.
driver writes out to each individual
• The Software Components
buffer. With some graphics cards, its
Your software must also be able to
possible to enable a mode called
support, recognize and use the video
"horizontal span" which accomplishes
hardware's multiple monitor capabilities.
this. The OpenGL/DirectX programmer There are three levels where this needs to
then renders to a very large frame buffer happen:
for output. In practice, and with recent
• Windows itself several different monitors -- for example,
• The video hardware's display you might be able to put menus and
driver toolbars on one monitor and your
working graphics on another. PowerPoint,
• PowerPoint and other
on a properly configured system, allows
applications software
you to display your slide show on one
Let's take a closer look at each of these monitor and your speakers notes on
levels. another ... very handy indeed.

i. Windows Video hardware and/or display drivers


can support multiple modes of operation,
Microsoft Windows 98, 98SE, ME,
including:
Windows 2000, XP and 2003 all have
built-in support to recognize multi- • Multi-monitor Clone
monitor configurations. Windows NT4 • Multi-monitor Span
and earlier and Windows 95 do not. • True Multi-monitor
ii. The Display Driver
Let's look at each of these modes in
A display driver is software that translates more detail.
graphics commands from generic
i. Multi-monitor Clone
Windows ones to commands specific to
the video hardware. Most of the multi-monitor display cards
and their drivers have the ability to
The display driver recognizes the multi-
"clone" the content of one monitor to the
monitor hardware (the video hardware)
other monitors. In the Multi-monitor
and tells Windows about it and the actual
Clone mode, the operating system is
number of monitors connected to the
informed that the machine has only one
system.
monitor when it actually has several.
Normally, the display driver tells the Behind the scenes, the video hardware or
truth, but there can be a mismatch the display driver replicates the content
between the actual number of monitors of one monitor to the other monitors.
attached to the machine and the number
In clone mode, Windows and
of them reported by the driver.
applications (including PowerPoint) see
iii. PowerPoint and Other only one monitor. They aren't even
Software aware that the output that they produce
Your programs must also recognize gets copied over multiple monitors. The
multiple monitors and do something same information is shown on both/all
useful with them. Windows itself may monitors.
allow you to spread your display out over
In the clone mode, one of the see only one monitor, but now the
monitors is selected as the primary monitor is "virtual" (not a real
one. It is this monitor that the physical monitor) and it has an
operating system sees. All other abnormal display resolution.
monitors usually have the same
For instance, if there are two
display resolution and color depth
monitors configured as sitting side-
as the primary monitor.
by-side, then the display driver
Clone mode doesn't require the would tell Windows that the display
operating system to have multi- resolution has 8/3 ratio - twice the
monitor support. This mode can be normal width, that is.
made available on Windows 95 and
And also like Clone mode, Span
Windows NT too and even older
mode too doesn't require Windows
versions of Windows and DOS.
to recognize and support multi-
Clone mode is available on virtually monitor configurations. Span mode
every laptop that has an external can work on Windows 95 and
monitor connector. You can usually Windows NT.
use a special function key
iii. True Multi-monitor
combination to alternate among
internal video only, external video Clone and Span modes tell
only and both internal and external Windows that only one monitor is
video. present on the machine. They don't
give Windows control over
ii. Multi-monitor Span
individual monitors, but they don't
Normal monitors have a 4/3 width- require Windows to support
to-height display ratio. Common multiple monitors either.
video resolutions like 640x480,
True Multi-monitor mode is
600x800, 768x1024, 1280x1024,
different. Here, the display driver
etc. all fall under that ratio. Plasma
tells Windows the actual number of
displays may have 16/9 width-to-
monitors attached to the computer.
height ratios.
Each monitor can have its own
Multi-monitor Span mode allows display and each can have its own
you to set a non-4/3 display independent display resolution and
resolution as the "desktop" display, color depth.
then span the entire desktop (usable
Does your computer have True
area) across multiple monitors.
Multi-monitor support? One way to
Like Multi-monitor Clone tell is to right-click the Windows
mode, Windows and applications desktop and choose Properties from
the popup menu then click the • VillageTroni
Settings tab of the Display c VTBook
Properties dialog box. • Margi
Display ToGo

You can add Multi-monitor


support to a desktop PC by
replacing the video display card
with a "multi-head" card or, in
some cases, by adding an
additional card to supplement the
one you already have.

PowerPoint recognizes this mode


and enables features like Presenter
View when it detects that Multi-
monitor support is available.

The PowerShow add-in utilizes this


mode to extend PowerPoint's multi-
Your computer's Settings tab monitor support. It enables you to
may look different. The key things show different slide shows on
to look for are (outlined here in different monitors simultaneously.
yellow): It also utilizes this mode to provide
• Two or more monitor icons in span support for individual slide
the dark gray area under "Drag the shows. Using PowerShow, you can
monitor ..." control what slide show would span
•A "Display" dropdown listbox how many monitors. True Multi-
with multiple monitors listed, one for monitor mode enables PowerShow
each monitor in the gray area above to let you view the speaker notes on
the laptop while viewing the slide
• The ability to set the video
show on another display connected
properties (Screen resolution, Color
to an external device like a video
quality) of each monitor
projector.
independently
The SundayStar addin for
If your laptop doesn't offer true PowerPoint introduces the
Multi-monitor support, you may following slide show features to
be able to add it with a PCMCIA PowerPoint running on a computer
(PC slot) graphics card such as
that supports a multi-monitor
configuration:

• Start multiple slide


shows on a monitor
simultaneously.
• Each slide show has a
keyboard shortcut associated
with it. Switch between slide
shows using the keyboard
shortcuts.
• Slide design view
stays in-sync with slide
show.
• Slide show stays in-
sync with slide design view.

SundayStar works with


Microsoft PowerPoint 2000,
PowerPoint 2002 (XP) and
PowerPoint 2003 on Windows
98, Windows Me, Windows
2000 and Windows XP.

V. REFERENCES

i. http://www.actualtools.com/mul
tiplemonitors/

ii. http://en.wikipedia.org/wiki/Mul
ti-monitor
iii.

You might also like