Changeset 84079 in webkit


Ignore:
Timestamp:
Apr 15, 2011 9:40:22 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-15 John Bates <jbates@google.com>

Reviewed by Kenneth Russell.

Change WebGraphicsContext3D virtuals to pure virtuals as intended
https://bugs.webkit.org/show_bug.cgi?id=58479

  • public/WebGraphicsContext3D.h:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r84072 r84079  
     12011-04-15  John Bates  <jbates@google.com>
     2
     3        Reviewed by Kenneth Russell.
     4
     5        Change WebGraphicsContext3D virtuals to pure virtuals as intended
     6        https://bugs.webkit.org/show_bug.cgi?id=58479
     7
     8        * public/WebGraphicsContext3D.h:
     9
    1102011-04-15  Shishir Agrawal  <shishir@chromium.org>
    211
  • trunk/Source/WebKit/chromium/public/WebGraphicsContext3D.h

    r83552 r84079  
    170170
    171171    // GL_CHROMIUM_latch
    172     virtual void getParentToChildLatchCHROMIUM(WGC3Duint* latchId) {} // FIXME: = 0;
    173     virtual void getChildToParentLatchCHROMIUM(WGC3Duint* latchId) {} // FIXME: = 0;
    174     virtual void waitLatchCHROMIUM(WGC3Duint latchId) {} // FIXME: = 0;
    175     virtual void setLatchCHROMIUM(WGC3Duint latchId) {} // FIXME: = 0;
     172    virtual void getParentToChildLatchCHROMIUM(WGC3Duint* latchId) = 0;
     173    virtual void getChildToParentLatchCHROMIUM(WGC3Duint* latchId) = 0;
     174    virtual void waitLatchCHROMIUM(WGC3Duint latchId) = 0;
     175    virtual void setLatchCHROMIUM(WGC3Duint latchId) = 0;
    176176
    177177    // The entry points below map directly to the OpenGL ES 2.0 API.
Note: See TracChangeset for help on using the changeset viewer.