| OLD | NEW |
| (Empty) |
| 1 // Copyright 2011, Google Inc. | |
| 2 // All rights reserved. | |
| 3 // | |
| 4 // Redistribution and use in source and binary forms, with or without | |
| 5 // modification, are permitted provided that the following conditions are | |
| 6 // met: | |
| 7 // | |
| 8 // * Redistributions of source code must retain the above copyright | |
| 9 // notice, this list of conditions and the following disclaimer. | |
| 10 // * Redistributions in binary form must reproduce the above | |
| 11 // copyright notice, this list of conditions and the following disclaimer | |
| 12 // in the documentation and/or other materials provided with the | |
| 13 // distribution. | |
| 14 // * Neither the name of Google Inc. nor the names of its | |
| 15 // contributors may be used to endorse or promote products derived from | |
| 16 // this software without specific prior written permission. | |
| 17 // | |
| 18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 | |
| 30 #include "config.h" | |
| 31 #include "DartWebGLRenderingContext.h" | |
| 32 | |
| 33 #if ENABLE(WEBGL) | |
| 34 | |
| 35 namespace WebCore { | |
| 36 | |
| 37 namespace DartWebGLRenderingContextInternal { | |
| 38 | |
| 39 void getAttachedShadersCallback(Dart_NativeArguments) | |
| 40 { | |
| 41 // FIXME: proper implementation. | |
| 42 DART_UNIMPLEMENTED(); | |
| 43 } | |
| 44 | |
| 45 void getBufferParameterCallback(Dart_NativeArguments) | |
| 46 { | |
| 47 // FIXME: proper implementation. | |
| 48 DART_UNIMPLEMENTED(); | |
| 49 } | |
| 50 | |
| 51 void getExtensionCallback(Dart_NativeArguments) | |
| 52 { | |
| 53 // FIXME: proper implementation. | |
| 54 DART_UNIMPLEMENTED(); | |
| 55 } | |
| 56 | |
| 57 void getFramebufferAttachmentParameterCallback(Dart_NativeArguments) | |
| 58 { | |
| 59 // FIXME: proper implementation. | |
| 60 DART_UNIMPLEMENTED(); | |
| 61 } | |
| 62 | |
| 63 void getParameterCallback(Dart_NativeArguments) | |
| 64 { | |
| 65 // FIXME: proper implementation. | |
| 66 DART_UNIMPLEMENTED(); | |
| 67 } | |
| 68 | |
| 69 void getProgramParameterCallback(Dart_NativeArguments) | |
| 70 { | |
| 71 // FIXME: proper implementation. | |
| 72 DART_UNIMPLEMENTED(); | |
| 73 } | |
| 74 | |
| 75 void getRenderbufferParameterCallback(Dart_NativeArguments) | |
| 76 { | |
| 77 // FIXME: proper implementation. | |
| 78 DART_UNIMPLEMENTED(); | |
| 79 } | |
| 80 | |
| 81 void getShaderParameterCallback(Dart_NativeArguments) | |
| 82 { | |
| 83 // FIXME: proper implementation. | |
| 84 DART_UNIMPLEMENTED(); | |
| 85 } | |
| 86 | |
| 87 void getSupportedExtensionsCallback(Dart_NativeArguments) | |
| 88 { | |
| 89 // FIXME: proper implementation. | |
| 90 DART_UNIMPLEMENTED(); | |
| 91 } | |
| 92 | |
| 93 void getTexParameterCallback(Dart_NativeArguments) | |
| 94 { | |
| 95 // FIXME: proper implementation. | |
| 96 DART_UNIMPLEMENTED(); | |
| 97 } | |
| 98 | |
| 99 void getUniformCallback(Dart_NativeArguments) | |
| 100 { | |
| 101 // FIXME: proper implementation. | |
| 102 DART_UNIMPLEMENTED(); | |
| 103 } | |
| 104 | |
| 105 void getVertexAttribCallback(Dart_NativeArguments) | |
| 106 { | |
| 107 // FIXME: proper implementation. | |
| 108 DART_UNIMPLEMENTED(); | |
| 109 } | |
| 110 | |
| 111 void uniform1fvCallback(Dart_NativeArguments) | |
| 112 { | |
| 113 // FIXME: proper implementation. | |
| 114 DART_UNIMPLEMENTED(); | |
| 115 } | |
| 116 | |
| 117 void uniform1ivCallback(Dart_NativeArguments) | |
| 118 { | |
| 119 // FIXME: proper implementation. | |
| 120 DART_UNIMPLEMENTED(); | |
| 121 } | |
| 122 | |
| 123 void uniform2fvCallback(Dart_NativeArguments) | |
| 124 { | |
| 125 // FIXME: proper implementation. | |
| 126 DART_UNIMPLEMENTED(); | |
| 127 } | |
| 128 | |
| 129 void uniform2ivCallback(Dart_NativeArguments) | |
| 130 { | |
| 131 // FIXME: proper implementation. | |
| 132 DART_UNIMPLEMENTED(); | |
| 133 } | |
| 134 | |
| 135 void uniform3fvCallback(Dart_NativeArguments) | |
| 136 { | |
| 137 // FIXME: proper implementation. | |
| 138 DART_UNIMPLEMENTED(); | |
| 139 } | |
| 140 | |
| 141 void uniform3ivCallback(Dart_NativeArguments) | |
| 142 { | |
| 143 // FIXME: proper implementation. | |
| 144 DART_UNIMPLEMENTED(); | |
| 145 } | |
| 146 | |
| 147 void uniform4fvCallback(Dart_NativeArguments) | |
| 148 { | |
| 149 // FIXME: proper implementation. | |
| 150 DART_UNIMPLEMENTED(); | |
| 151 } | |
| 152 | |
| 153 void uniform4ivCallback(Dart_NativeArguments) | |
| 154 { | |
| 155 // FIXME: proper implementation. | |
| 156 DART_UNIMPLEMENTED(); | |
| 157 } | |
| 158 | |
| 159 void uniformMatrix2fvCallback(Dart_NativeArguments) | |
| 160 { | |
| 161 // FIXME: proper implementation. | |
| 162 DART_UNIMPLEMENTED(); | |
| 163 } | |
| 164 | |
| 165 void uniformMatrix3fvCallback(Dart_NativeArguments) | |
| 166 { | |
| 167 // FIXME: proper implementation. | |
| 168 DART_UNIMPLEMENTED(); | |
| 169 } | |
| 170 | |
| 171 void uniformMatrix4fvCallback(Dart_NativeArguments) | |
| 172 { | |
| 173 // FIXME: proper implementation. | |
| 174 DART_UNIMPLEMENTED(); | |
| 175 } | |
| 176 | |
| 177 void vertexAttrib1fvCallback(Dart_NativeArguments) | |
| 178 { | |
| 179 // FIXME: proper implementation. | |
| 180 DART_UNIMPLEMENTED(); | |
| 181 } | |
| 182 | |
| 183 void vertexAttrib2fvCallback(Dart_NativeArguments) | |
| 184 { | |
| 185 // FIXME: proper implementation. | |
| 186 DART_UNIMPLEMENTED(); | |
| 187 } | |
| 188 | |
| 189 void vertexAttrib3fvCallback(Dart_NativeArguments) | |
| 190 { | |
| 191 // FIXME: proper implementation. | |
| 192 DART_UNIMPLEMENTED(); | |
| 193 } | |
| 194 | |
| 195 void vertexAttrib4fvCallback(Dart_NativeArguments) | |
| 196 { | |
| 197 // FIXME: proper implementation. | |
| 198 DART_UNIMPLEMENTED(); | |
| 199 } | |
| 200 | |
| 201 } | |
| 202 | |
| 203 } | |
| 204 | |
| 205 #endif // ENABLE(WEBGL) | |
| OLD | NEW |