https://github.com/kkent030315/overlayd3d9
Simple overlay using D3D9
https://github.com/kkent030315/overlayd3d9
Last synced: 2 months ago
JSON representation
Simple overlay using D3D9
- Host: GitHub
- URL: https://github.com/kkent030315/overlayd3d9
- Owner: kkent030315
- Created: 2020-06-04T16:49:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-08T22:05:24.000Z (about 5 years ago)
- Last Synced: 2025-07-27T04:29:47.352Z (3 months ago)
- Language: C++
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OverlayD3D9
Simple overlay using `D3D9````cpp
constexpr auto color = D3DCOLOR_RGBA(255, 0, 0, 255);renderer::DrawString(XORSTR("I AM A GOOD BOY"), { 15, 45 }, color, false, true, detail::d3d9_font);
renderer::DrawRectangle({ 1920 / 2, 1080 / 2, 60, 120 }, D3DCOLOR_ARGB(255, 155, 000, 155), true);
renderer::DrawRectangle({ 1920 / 3, 1080 / 3, 60, 120 }, D3DCOLOR_ARGB(255, 155, 055, 155), true);
renderer::DrawRectangle({ 1920 / 4, 1080 / 4, 60, 120 }, D3DCOLOR_ARGB(200, 055, 155, 155), true);
renderer::DrawRectangle({ 1920 / 5, 1080 / 5, 60, 120 }, D3DCOLOR_ARGB(155, 055, 255, 155), true);
```# Requirements
Only supports win10 x64# Features
- FPS Counter
- String Xoring
- Draw Strings
`L` Custom Colors
`L` Auto Centering
`L` Outline For Visibility
- Draw Lines
`L` Custom Colors
- Draw Rectangles
`L` Custom Colors
`L` Outline For Visibility
- Draw Circles
`L` Custom Colors