Registry / other / dxut
library11.32vcpkgunverified

A "GLUT"-like framework for Direct3D 11.x Win32 desktop applications

vcpkg install dxut
INSTALL
IMPORT
SIG · DXUT
D
dxut
othercppv11.32
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

DXUT.h
#include <DXUT.h>

Initialize DXUT, create a window and device, and enter the main loop with a frame move callback.

#include <DXUT.h> #include <d3d11.h> // DXUT provides a framework; typical usage involves overriding callbacks void CALLBACK OnFrameMove(double fTime, float fElapsedTime, void* pUserContext) { // Update scene } int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) { DXUTSetCallbackFrameMove(OnFrameMove); DXUTInit(); DXUTCreateWindow(L"DXUT Example"); DXUTCreateDevice(true, 800, 600); DXUTMainLoop(); return DXUTGetExitCode(); }
Debug
Known issues
breakingDXUT is deprecated and not recommended for new projects; it is Windows-only.
fix
Consider using a modern framework like DirectX Tool Kit (DirectXTK) or custom Win32/Direct3D setup.
affects: >=11.32
Upgrade
Version history
11.32latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
6
Meta
1
Amazon
1
Resources

No resource links recorded.

dxut — pip install dxut · libregistry