mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
55 lines
1.2 KiB
Rust
55 lines
1.2 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
//! These functions aren't actually called. They are here as a link
|
|
//! hack because Skia references them.
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glBindVertexArrayOES(_array: usize) {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glDeleteVertexArraysOES(_n: isize, _arrays: *const ()) {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glGenVertexArraysOES(_n: isize, _arrays: *const ()) {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glRenderbufferStorageMultisampleIMG(
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
) {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glFramebufferTexture2DMultisampleIMG(
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
_: isize,
|
|
) {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
pub extern "C" fn glDiscardFramebufferEXT(_: isize, _: isize, _: *const ()) {
|
|
unimplemented!()
|
|
}
|