| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 void Extensions3DChromium::unmapTexSubImage2DCHROMIUM(const void* data) | 95 void Extensions3DChromium::unmapTexSubImage2DCHROMIUM(const void* data) |
| 96 { | 96 { |
| 97 m_internal->unmapTexSubImage2DCHROMIUM(data); | 97 m_internal->unmapTexSubImage2DCHROMIUM(data); |
| 98 } | 98 } |
| 99 | 99 |
| 100 void Extensions3DChromium::copyTextureToParentTextureCHROMIUM(unsigned texture,
unsigned parentTexture) | 100 void Extensions3DChromium::copyTextureToParentTextureCHROMIUM(unsigned texture,
unsigned parentTexture) |
| 101 { | 101 { |
| 102 m_internal->copyTextureToParentTextureCHROMIUM(texture, parentTexture); | 102 m_internal->copyTextureToParentTextureCHROMIUM(texture, parentTexture); |
| 103 } | 103 } |
| 104 | 104 |
| 105 void Extensions3DChromium::getParentToChildLatchCHROMIUM(GC3Duint* latchId) | |
| 106 { | |
| 107 m_internal->getParentToChildLatchCHROMIUM(latchId); | |
| 108 } | |
| 109 | |
| 110 void Extensions3DChromium::getChildToParentLatchCHROMIUM(GC3Duint* latchId) | |
| 111 { | |
| 112 m_internal->getChildToParentLatchCHROMIUM(latchId); | |
| 113 } | |
| 114 | |
| 115 void Extensions3DChromium::waitLatchCHROMIUM(GC3Duint latchId) | |
| 116 { | |
| 117 m_internal->waitLatchCHROMIUM(latchId); | |
| 118 } | |
| 119 | |
| 120 void Extensions3DChromium::setLatchCHROMIUM(GC3Duint latchId) | |
| 121 { | |
| 122 m_internal->setLatchCHROMIUM(latchId); | |
| 123 } | |
| 124 | |
| 125 Platform3DObject Extensions3DChromium::createVertexArrayOES() | 105 Platform3DObject Extensions3DChromium::createVertexArrayOES() |
| 126 { | 106 { |
| 127 return 0; | 107 return 0; |
| 128 } | 108 } |
| 129 | 109 |
| 130 void Extensions3DChromium::deleteVertexArrayOES(Platform3DObject) | 110 void Extensions3DChromium::deleteVertexArrayOES(Platform3DObject) |
| 131 { | 111 { |
| 132 } | 112 } |
| 133 | 113 |
| 134 GC3Dboolean Extensions3DChromium::isVertexArrayOES(Platform3DObject) | 114 GC3Dboolean Extensions3DChromium::isVertexArrayOES(Platform3DObject) |
| (...skipping 16 matching lines...) Expand all Loading... |
| 151 } | 131 } |
| 152 | 132 |
| 153 void Extensions3DChromium::paintFramebufferToCanvas(int framebuffer, int width,
int height, bool premultiplyAlpha, ImageBuffer* imageBuffer) | 133 void Extensions3DChromium::paintFramebufferToCanvas(int framebuffer, int width,
int height, bool premultiplyAlpha, ImageBuffer* imageBuffer) |
| 154 { | 134 { |
| 155 m_internal->paintFramebufferToCanvas(framebuffer, width, height, premultiply
Alpha, imageBuffer); | 135 m_internal->paintFramebufferToCanvas(framebuffer, width, height, premultiply
Alpha, imageBuffer); |
| 156 } | 136 } |
| 157 | 137 |
| 158 } // namespace WebCore | 138 } // namespace WebCore |
| 159 | 139 |
| 160 #endif // ENABLE(WEBGL) | 140 #endif // ENABLE(WEBGL) |
| OLD | NEW |