Skip to content

Instantly share code, notes, and snippets.

@mmozeiko
mmozeiko / d3d11_pixels.c
Last active June 6, 2026 04:13
drawing pixels in software & showing them to window by uploading via D3D11
#define COBJMACROS
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <d3d11.h>
#include <stdint.h>
#include <string.h>
#include <intrin.h>