Difference between revisions of "Mipmapped Volume Rendering"

From Immersive Visualization Lab Wiki
Jump to: navigation, search
Line 2: Line 2:
  
 
==Current Project Status==
 
==Current Project Status==
 
  
  
Line 13: Line 12:
 
#* modify texture memory allocation to handle single channel
 
#* modify texture memory allocation to handle single channel
 
#* vvGLSL class
 
#* vvGLSL class
 +
# Modify downsampler with padding
 +
#* the current downsampler does not pad empty data when a brick is not of a regular size. Nancy and I implemented in this way because it was easier than padding. However, this causes lots of problems from the reader part, mostly additional checking codelet whether a brick has a regular size, e.g. 128, or smaller than that.
 +
Due to the exception, we need couple more variables for boundary bricks of which size is usually smaller than the brick size. By padding, these inefficient and unnecessary data can be removed.

Revision as of 16:13, 12 June 2008

Long Term Goal

Current Project Status

TODO

HanProgressReport

  1. Reimplement Pixel Buffer Object
  2. Move configuration file parsing from BrickManager class to MeshRend class (done)
  3. Move duplicated code in QuadInfo and CubeInfo class to BrickInfo super class (done)
  4. Reimplement Multi-channel support
    • modify texture memory allocation to handle single channel
    • vvGLSL class
  5. Modify downsampler with padding
    • the current downsampler does not pad empty data when a brick is not of a regular size. Nancy and I implemented in this way because it was easier than padding. However, this causes lots of problems from the reader part, mostly additional checking codelet whether a brick has a regular size, e.g. 128, or smaller than that.

Due to the exception, we need couple more variables for boundary bricks of which size is usually smaller than the brick size. By padding, these inefficient and unnecessary data can be removed.