Ignore:
Timestamp:
Mar 22, 2013, 7:45:30 PM (11 years ago)
Author:
gah
Message:
  • Clean up unused variable warnings.
  • Remove use of ffmpeg libraries from nanovis. This should make it easier to maintain (don't have to keep up with all the backward incompatible changes to the ffmpeg library).
File:
1 edited

Legend:

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

    r3502 r3559  
    7676    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, _interpType);
    7777
    78     GLuint format[5] = { -1, GL_LUMINANCE, GL_LUMINANCE_ALPHA, GL_RGB, GL_RGBA };
     78    GLuint format[5] = {
     79        (unsigned int)-1, GL_LUMINANCE, GL_LUMINANCE_ALPHA, GL_RGB, GL_RGBA
     80    };
    7981
    8082    glTexImage1D(GL_TEXTURE_1D, 0, format[_numComponents], _width, 0,
Note: See TracChangeset for help on using the changeset viewer.