Module: wine Branch: master Commit: 7181ef4052c99a8ce294dbbedfb34c3daff6f102 URL: https://gitlab.winehq.org/wine/wine/-/commit/7181ef4052c99a8ce294dbbedfb34c3...
Author: Zebediah Figura zfigura@codeweavers.com Date: Sat Oct 28 14:01:10 2023 -0500
wined3d: Move state objects from state.c to device.c.
The entire rest of state.c is concerned with the GL fixed-function pipeline.
device.c seems the most fitting place for these, since they're associated with the device and stored in the device. device.c is also one of the few files that contains client-side code, which these functions are.
---
dlls/wined3d/device.c | 228 ++++++++++++++++++++++++++++++++++++++++++++++++++ dlls/wined3d/state.c | 226 ------------------------------------------------- 2 files changed, 228 insertions(+), 226 deletions(-)