Untitled Document
Untitled Document
Untitled Document
DISPLAY
● Cathode Ray Tube (CRT):
A cathode ray tube (CRT) is a specialized vacuum tube in which
images are produced when an electron beam strikes a
phosphorescent surface. It modulates, accelerates, and deflects
electron beam(s) onto the screen to create the images. Most desktop
computer displays make use of CRT for image-displaying purposes.
● Components of CRT:
● Nixie Tube
● Flip-disc display
LCD (Liquid Crystal Display):
● How it works: Uses liquid crystals that are aligned by electric fields to
modulate light. It requires a backlight to illuminate the display.
● Pros: Good color accuracy and brightness; energy-efficient for its
category.
● Cons: Limited contrast ratio and viewing angles compared to newer
technologies.
Plasma (1995):
● How it works: Uses ionized gases (plasma) to produce light. Each pixel
is made up of cells filled with gases that emit light when electrically
charged.
● Pros: Excellent color accuracy, deep blacks, and high contrast ratios.
● Cons: Heavier, consumes more power, and can suffer from screen
burn-in.
● How it works: A type of LCD that uses LEDs for backlighting instead of
traditional fluorescent lights. There are two main types: edge-lit and
direct-lit.
● Pros: Better contrast, brighter displays, and more energy-efficient
compared to traditional LCDs.
● Cons: Color accuracy and uniformity can vary based on the type of LED
backlighting.
● How it works: Uses organic compounds that emit light when an electric
current is applied. Each pixel generates its own light.
● Pros: Excellent color accuracy, true blacks, high contrast ratios, and
flexible designs.
● Cons: Generally more expensive, potential for burn-in, and sometimes
less bright than LED displays.
● How it works: Uses tiny capsules filled with charged particles that
rearrange to form text or images when an electric field is applied.
Commonly used in e-readers like Kindle.
● Pros: Very low power consumption, excellent readability in direct
sunlight, and paper-like appearance.
● Cons: Limited to grayscale or basic color, slower refresh rates, and
generally not suited for video or high-speed content.
PRINTING TECHNOLOGY
● Clay Tablets:
○ How it works: Symbols or text are inscribed onto wet clay tablets
using a stylus or other sharp tools. The tablets are then baked or
dried to harden them.
○ Use: Common in ancient Mesopotamia (e.g., Sumerian
cuneiform) and other early civilizations for record-keeping and
communication.
● Wood Block Printing:
○ How it works: Carving a design into a block of wood, applying ink,
and then pressing it onto paper or fabric. Each block can only be
used for a single color.
○ Use: Originated in China and was used for printing text and
images on paper and textiles. It spread to other regions, including
Europe.
● Stencils/Masks:
○ How it works: Creating a design by cutting out shapes from a
material (like paper or metal) and applying ink or paint through the
openings. Masks can be reused for multiple prints.
○ Use: Used in various cultures for decorating and marking objects,
from ancient pottery to medieval manuscripts.
● Seals and Stamps:
○ How it works: An engraved or carved surface is pressed into a
medium like wax or clay to create an impression of the design or
text.
○ Use: Used for authentication, decoration, and communication,
especially in ancient and medieval times.
Modern
5. Lithography:
○ How it works: Based on the principle that oil and water repel each
other. An image is drawn on a flat stone or metal plate with a
greasy substance, then inked and pressed onto paper.
○ Use: Developed in the late 18th century and widely used for
producing high-quality prints and artwork.
6. Flat-bed Printing Press:
○ How it works: An early type of press where the printing plate is
flat, and the paper is pressed onto it by a platen.
○ Use: Used for producing books, newspapers, and other printed
materials, especially from the 15th to 19th centuries.
7. Rotary Printing Press:
○ How it works: Uses cylindrical plates or rollers to print onto paper
as it passes through the press. This allows for continuous printing
and is much faster than flat-bed presses.
○ Use: Revolutionized mass production of newspapers and
magazines in the 19th century.
8. Offset Press:
○ How it works: The inked image is first transferred (or "offset") from
a plate to a rubber blanket and then to the printing surface. This
method allows for high-quality prints and is suitable for various
substrates.
○ Use: Dominant method for commercial printing of books,
newspapers, and magazines.
9. Screenprinting:
○ How it works: A stencil is placed on a screen, and ink is pushed
through the open areas of the stencil onto the substrate. Each
color requires a separate screen.
○ Use: Popular for printing on textiles, posters, and other materials.
10. Dot Matrix Printing (DMP):
○ How it works: Uses a matrix of tiny dots to form characters and
images. A print head with pins strikes an inked ribbon to create
the dots on paper.
○ Use: Common in early computer printers and for printing multipart
forms.
11. Thermal Printing (Thermochromic):
○ How it works: Applies heat to a special thermochromic paper,
causing it to change color and form text or images. No ink is
used; the paper itself reacts to heat.
○ Use: Used in receipts, labels, and some types of ticketing
systems.
12. Laser Printing:
○ How it works: Uses a laser beam to create an electrostatic image
on a drum, which is then transferred to paper using toner. The
toner is fused to the paper with heat.
○ Use: Widely used for high-quality, fast, and reliable printing in
office and home environments
● Raster-Scan Displays
○ Raster Scan Displays are most common type of graphics monitor
which employs CRT. It is based on television technology. In raster
scan system electron beam sweeps across the screen, from top
to bottom covering one row at a time.A pattern of illuminated
pattern of spots is created by turning beam intensity on and off as
it moves across each row.
○ In raster scan systems refreshing is done at a rate of 60-80
frames per second
○ In modern displays, the principles of raster scanning are still
used, but instead of an electron beam, we have pixels controlled
by digital signals in technologies like LCD, LED, OLED, and
others.
● NOTE
○ Real-time computer graphics are constrained by a combination of
hardware limitations, performance considerations, rendering
techniques, computational complexity, network issues, power
consumption, and development challenges. Addressing these
constraints involves a mix of optimization strategies, efficient
algorithms, and careful management of resources to balance
visual fidelity and performance.
○ Output
■ Position: The final position of the vertex in clip
space, used in further stages.
■ For Next Shader: The processed data, such as
transformed positions and attributes, is passed to the
next stage (e.g., fragment shader) for additional
processing.
● 3>
○ Triangle Assembly
○ Triangle Assembly refers to the process of creating
triangles from vertex data to form the basic building blocks
of 3D models. Triangles are a common primitive type
because they are simple, planar, and always convex,
making them versatile for rendering complex shapes.
○ Element Array (Index Buffer): A buffer containing
indices that reference vertices in the Vertex Array, used to
efficiently assemble triangles and other primitives.
○ Benefits: Reduces memory usage, improves
performance through efficient indexing and cache
optimization, and simplifies data management
● Rasterization
○ Rasterization involves converting geometric shapes,
defined by vertices, into a 2D grid of pixels. This process
determines which pixels (fragments) are covered by each
primitive and calculates the attributes (such as color and
depth) for these fragments