Ignore:
Timestamp:
Mar 29, 2013, 1:34:31 AM (11 years ago)
Author:
ldelgass
Message:

More refactoring in nanovis flows: Rename FlowCmd? to Flow and move to separate
implementation module. Move statis NanoVis? methods to nanovis.cpp from
FlowCmd?.cpp, remove more unused classes and code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/Trace.cpp

    r3559 r3597  
    4545
    4646bool
    47 CheckFBO(GLenum *statusPtr)
     47CheckFBO(GLenum *status)
    4848{
    49     *statusPtr = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
    50     return (*statusPtr == GL_FRAMEBUFFER_COMPLETE_EXT);
     49    *status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
     50    return (*status == GL_FRAMEBUFFER_COMPLETE_EXT);
    5151}
    5252
Note: See TracChangeset for help on using the changeset viewer.