Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement th06::AnmManager::DrawEndingRect #311

Closed

Conversation

sere3925sere
Copy link

Interesting, those two produce exactly the same code:

    RECT rect;
    POINT point;
    rect.left = rectLeft;
    rect.top = rectTop;
    rect.right = rectLeft + width;
    rect.bottom = rectTop + height;
    point.x = rectX;
    point.y = rectY;
    RECT rect = {rectLeft, rectTop, rectLeft + width, rectTop + height};
    POINT point = {rectX, rectY};

Direct3D9 GetBackBuffer reference https://learn.microsoft.com/en-us/windows/win32/api/d3d9/nf-d3d9-idirect3ddevice9-getbackbuffer

src/AnmManager.cpp Outdated Show resolved Hide resolved
@sere3925sere sere3925sere closed this by deleting the head repository Nov 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants