All Projects → elishacloud → Directx Wrappers

elishacloud / Directx Wrappers

Licence: other
Wraps the main DirectX and Direct3D DLLs. It allows you to intercept calls to DirectX and Direct3D interface functions so that you can log API calls or you can add your own code into the game, such as enabling Anti-Aliasing or creating overlays in the game.

Projects that are alternatives of or similar to Directx Wrappers

Dxwrapper
Fixes compatibility issues with older games running on Windows 10 by wrapping DirectX dlls. Also allows loading custom libraries with the file extension .asi into game processes.
Stars: ✭ 460 (+325.93%)
Mutual labels:  gaming, directx, d3d9, dll
D9vk
A Direct3D9 to Vulkan layer using the DXVK backend. [Upstreamed to DXVK]
Stars: ✭ 805 (+645.37%)
Mutual labels:  directx, direct3d, d3d9
Mage
🧙 MAGE
Stars: ✭ 220 (+103.7%)
Mutual labels:  directx, direct3d
Wine Nine Standalone
Build Gallium Nine support on top of an existing WINE installation
Stars: ✭ 170 (+57.41%)
Mutual labels:  gaming, d3d9
stereo
Perform stereo matching algorithm using Direct 3D (level 9.3) on a mobile device without CUDA support.
Stars: ✭ 13 (-87.96%)
Mutual labels:  directx, direct3d
Xray 16
Improved version of the X-Ray Engine, the game engine used in the world-famous S.T.A.L.K.E.R. game series by GSC Game World. Join OpenXRay! ;)
Stars: ✭ 1,806 (+1572.22%)
Mutual labels:  directx, d3d9
Awesome D3d12
Awesome D3D12 ecosystem
Stars: ✭ 130 (+20.37%)
Mutual labels:  directx, direct3d
nine
Gallium Nine Standalone
Stars: ✭ 50 (-53.7%)
Mutual labels:  gaming, d3d9
Dxbc2Dxil
DEPRECATED. DXBC to DXIL (HLSL Bytecode to LLVM IR) using internal APIs.
Stars: ✭ 21 (-80.56%)
Mutual labels:  directx, direct3d
Dxvk
Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine
Stars: ✭ 7,117 (+6489.81%)
Mutual labels:  gaming, d3d9
Renderdoc
RenderDoc is a stand-alone graphics debugging tool.
Stars: ✭ 5,969 (+5426.85%)
Mutual labels:  directx, direct3d
Vk9
Direct3D 9 compatibility layer using Vulkan.
Stars: ✭ 799 (+639.81%)
Mutual labels:  direct3d, d3d9
Bgfx
Cross-platform, graphics API agnostic, "Bring Your Own Engine/Framework" style rendering library.
Stars: ✭ 10,252 (+9392.59%)
Mutual labels:  directx, d3d9
Apitrace
Tools for tracing OpenGL, Direct3D, and other graphics APIs
Stars: ✭ 2,198 (+1935.19%)
Mutual labels:  direct3d, d3d9
Goesp
Cross-platform streamproof ESP hack for Counter-Strike: Global Offensive, written in modern C++. Rendering and GUI powered by Dear ImGui.
Stars: ✭ 210 (+94.44%)
Mutual labels:  directx, dll
Directxtex
DirectXTex texture processing library
Stars: ✭ 1,039 (+862.04%)
Mutual labels:  directx, direct3d
Qtdirect3d
QDirect3DWidget implementation similar to the built-in QOpenGLWidget
Stars: ✭ 60 (-44.44%)
Mutual labels:  directx, direct3d
Pymba
Python wrapper for Allied Vision's Vimba C API
Stars: ✭ 98 (-9.26%)
Mutual labels:  dll
Injectallthethings
Seven different DLL injection techniques in one single project.
Stars: ✭ 1,297 (+1100.93%)
Mutual labels:  dll
Novuscore
A modern take on WoW emulation
Stars: ✭ 88 (-18.52%)
Mutual labels:  gaming

DirectX Wrappers

Introduction

Wraps the main DirectX and Direct3D DLLs. It allows you to intercept calls to DirectX and Direct3D interface functions so that you can log API calls or you can add your own code into the game, such as enabling Anti-Aliasing or creating overlays in the game. Once you have compiled this you can simply copy the DLL into the same folder as the game's executable and it should load it as if it were the real DLL file. It still forwards all calls to the real one in System32, it just allows stuff to happen in between.

Wraps the following versions of DirectX:

  • DirectX 1-7, DirectDraw and Direct3D (ddraw.dll)
  • DirectX 8, Direct3D (d3d8.dll)
  • DirectX 9, Direct3D (d3d9.dll)
  • DirectSound and DirectSound8 (dsound.dll)
  • DirectInput (dinput.dll)
  • DirectInput8 (dinput8.dll)

I plan to add these DLLs later:

  • d2d1.dll
  • d3d10.dll
  • d3d10core.dll
  • d3d11.dll
  • d3d12.dll

Note: It currently only works with 32bit games, but I might add 64bit support at some point.

License

Copyright (C) 2020 Elisha Riedlinger

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

Code in this project is taken from:

Development

Development was done in C++ using Microsoft Visual Studio Community 2017.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].