Skip to content

Headers Windows

Huts, Roman edited this page Jan 21, 2026 · 1 revision

Development Package Installation Windows

Table of Contents

Install

The AMF development package is available as a header-only tarball. This is the recommended method for obtaining the headers on Windows.

Header-Only Tarball

Each AMF release published on GPUOpen starting with AMF v1.4.33 has an attached tarball in the "Assets" section of the release. This tarball contains just the AMF headers.

  1. Download the tarball.

    curl -L -o AMF-headers-v<AMF VERSION>.tar.gz https://github.com/GPUOpen-LibrariesAndSDKs/AMF/releases/download/v<AMF VERSION>/AMF-headers-v<AMF VERSION>.tar.gz
    
    :: for example, the AMF v1.5.0 headers
    curl -L -o AMF-headers-v1.5.0.tar.gz https://github.com/GPUOpen-LibrariesAndSDKs/AMF/releases/download/v1.5.0/AMF-headers-v1.5.0.tar.gz
    
  2. Extract the tarball.

    tar -xzf <tarball>
    
    :: for example, the AMF v1.5.0 headers tarball
    tar -xzf AMF-headers-v1.5.0.tar.gz

Full Repo

Alternatively, the full AMF repo containing the headers, samples, and documentation can be cloned or downloaded as a zip file.

  1. Clone the AMF repo using Git.

    git clone git@github.com:GPUOpen-LibrariesAndSDKs/AMF.git
  2. Or download the AMF repo as a zip.

    curl -L -o master.zip https://github.com/GPUOpen-LibrariesAndSDKs/AMF/archive/refs/heads/master.zip

Clone this wiki locally