Tag Buffer Management for Translucent Object Rendering

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Tile-based rendering systems in 3D computer graphics often pass unnecessary pixel data due to the way translucent and opaque objects are handled, leading to inefficient rendering processes.

Innovation Solution

Modifying the pass spawning rules to render translucent tags into a tag buffer alongside opaque objects and only spawning a pass when a visible translucent pixel needs to be written to an occupied location, and using multiple tag buffers to minimize unnecessary passes by switching buffers when writing to an occupied location.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Reliability

If translucent objects are processed by spawning a pass immediately when seen, then all visible tags and translucent pixels are passed to the texturing and shading unit, but this results in unnecessary passes when opaque objects subsequently obscure the translucent pixels

Engineering Contradiction:
Improvecorrectness of translucent object renderingVSAvoidrendering efficiency
Core Design Contradiction:
ReliabilityVSProductivity

Solution Approach 1:

The patent applies preliminary action by rendering translucent object tags into the tag buffer in advance, before determining final visibility. This allows the system to prepare translucent pixel data early in the rendering pipeline, then later discard it if opaque objects obscure those pixels, avoiding unnecessary processing in the texturing and shading unit.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The patent implements discarding and recovering by allowing translucent pixel data to be temporarily stored in the tag buffer and then discarded if subsequently obscured by opaque objects. The tag buffer serves as a temporary storage mechanism where translucent tags can be rendered and later invalidated without requiring immediate processing, thus recovering computational resources.

Inventive Principle:
Principle #34Discarding and recovering

2Reliability

If all visible tags are passed to the texturing and shading unit for translucent objects, then correct shading is achieved, but opaque pixels not covered by translucent pixels are passed unnecessarily

Engineering Contradiction:
Improveaccuracy of pixel renderingVSAvoidcomputational resource waste
Core Design Contradiction:
ReliabilityVSLoss of energy

Solution Approach 1:

The patent applies taking out by extracting only the necessary pixel data for processing. By using the tag buffer to track which pixels actually require translucent rendering, the system extracts and processes only those specific pixels that need texturing and shading, leaving opaque pixels that are not covered by translucent objects to be handled separately and more efficiently.

Inventive Principle:
Principle #2Taking out (Extraction)

Solution Approach 2:

The patent implements local quality by applying different processing strategies to different regions of the image. Pixels covered by translucent objects receive full texturing and shading processing, while opaque pixels not covered by translucent objects use a different, more efficient processing path, optimizing resource usage based on local rendering requirements.

Inventive Principle:
Principle #3Local quality

3Loss of information

If multiple passes are spawned for translucent objects, then complete visibility information is captured, but the rendering process becomes slower due to repeated processing

Engineering Contradiction:
Improvecompleteness of visibility dataVSAvoidrendering time
Core Design Contradiction:
Loss of informationVSLoss of time

Solution Approach 1:

The patent applies merging by combining the tag rendering process with the visibility determination process. Instead of separate passes for rendering tags and determining visibility, the system merges these operations by rendering translucent tags into the tag buffer while simultaneously tracking visibility information, reducing the total number of passes required.

Inventive Principle:
Principle #5Merging (Combining)

Solution Approach 2:

The patent implements continuity of useful action by maintaining the tag buffer throughout the rendering process as a continuous data structure that accumulates visibility information. This allows the system to continuously update and refine which pixels require processing without interrupting the rendering flow or requiring multiple discrete passes, thereby reducing rendering time while preserving complete visibility data.

Inventive Principle:
Principle #20Continuity of useful action

Data Source

PatentUS8446409B2Method and apparatus for rendering computer graphic images of translucent and opaque objects
Publication Date: 2013.05.21 IMAGINATION TECH LTD
  • US8446409B2 patent drawing
  • US8446409B2 patent drawing
  • US8446409B2 patent drawing

AI summary

A method and an apparatus provided for rendering three-dimensional computer graphic images which include both translucent and opaque objects. A list of objects which may be visible in the images is determined and for each pixel in the list a determination is made as to whether or not the object in the list may be visible at that pixel. A data tag is stored for a transparent object determined to be visible at the pixel, and the data tag and object data are passed to a texturing and shading unit when the translucent object is determined to be overwriting the location in a tag buffer already occupied by another data tag.