servo: Drawing text on mac doesn't work yet

Source-Repo: https://github.com/servo/servo
Source-Revision: 82d9ff3e56516f333e72480b8b1d8c539a016bbb
This commit is contained in:
Brian Anderson 2012-05-26 19:03:27 -07:00
parent ce2315e9e4
commit eaaaaa8010

View File

@ -146,6 +146,12 @@ fn draw_display_list(
}
}
#[cfg(target_os = "macos")]
fn draw_some_text(_draw_target: AzDrawTargetRef) {
// FIXME: Don't know how to draw text on mac yet
}
#[cfg(target_os = "linux")]
fn draw_some_text(draw_target: AzDrawTargetRef) {
import az = azure;