Merge pull request #491 from emersion/fractional-output-artifact

Remove fractional output PR artifact
This commit is contained in:
Drew DeVault 2017-12-15 11:22:46 -05:00 committed by GitHub
commit 25acc37d67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -256,10 +256,6 @@ void wlr_output_set_scale(struct wlr_output *output, float scale) {
wl_signal_emit(&output->events.scale, output);
}
uint32_t wlr_output_integral_scale(struct wlr_output *output) {
return ceil(output->scale);
}
void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
const struct wlr_output_impl *impl) {
assert(impl->make_current && impl->swap_buffers && impl->transform);