Changeset 70933 in webkit


Ignore:
Timestamp:
Oct 29, 2010 3:01:29 PM (14 years ago)
Author:
benjamin.poulain@nokia.com
Message:

2010-10-29 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Antonio Gomes.

TextureMapperGL get the driver info log but do not use it
https://bugs.webkit.org/show_bug.cgi?id=48247

Remove the call to glGetProgramInfoLog().

  • platform/graphics/opengl/TextureMapperGL.cpp: (WebCore::TexmapShaderInfo::createShaderProgram):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70932 r70933  
     12010-10-29  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        TextureMapperGL get the driver info log but do not use it
     6        https://bugs.webkit.org/show_bug.cgi?id=48247
     7
     8        Remove the call to glGetProgramInfoLog().
     9
     10        * platform/graphics/opengl/TextureMapperGL.cpp:
     11        (WebCore::TexmapShaderInfo::createShaderProgram):
     12
    1132010-10-29  Benjamin Kalman  <kalman@google.com>
    214
  • trunk/WebCore/platform/graphics/opengl/TextureMapperGL.cpp

    r70819 r70933  
    168168        GL_CMD(glLinkProgram(programID))
    169169        programs[index].id = programID;
    170         char infoLog[1024];
    171         int len;
    172         GL_CMD(glGetProgramInfoLog(programID, 1024, &len, infoLog));
    173170    }
    174171
Note: See TracChangeset for help on using the changeset viewer.