remove Direct2D renderer

Removes the old slow Direct2D renderer which has become obselete with
the new Direct3D11 renderer.  Note that Direct2D is built on top of
Direct3D so there's really no reason to keep it around.
This commit is contained in:
Jonathan Marler 2025-01-14 08:57:05 -07:00 committed by CJ van den Berg
parent faabd69191
commit eb1caf5237
3 changed files with 1 additions and 260 deletions

View file

@ -18,7 +18,7 @@ const RGB = @import("color").RGB;
const input = @import("input");
const windowmsg = @import("windowmsg.zig");
const render = if (build_options.d2d) @import("d2d.zig") else @import("d3d11.zig");
const render = @import("d3d11.zig");
const FontFace = @import("FontFace.zig");
const XY = @import("xy.zig").XY;