Skip to content

Instantly share code, notes, and snippets.

@mmozeiko
mmozeiko / d3d11_pixels.c
Last active July 19, 2026 14:53
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>