├── .gitattributes ├── .gitignore ├── LICENSE ├── README.MD ├── README.RU.MD ├── framebroadcast.cpp ├── framebroadcast.h ├── framecapturer.cpp ├── framecapturer.h ├── main.cpp ├── qt-dxgi-screenshot.pro └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | qt-dxgi-screenshot.pro.user 2 | .vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/README.MD -------------------------------------------------------------------------------- /README.RU.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/README.RU.MD -------------------------------------------------------------------------------- /framebroadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/framebroadcast.cpp -------------------------------------------------------------------------------- /framebroadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/framebroadcast.h -------------------------------------------------------------------------------- /framecapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/framecapturer.cpp -------------------------------------------------------------------------------- /framecapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/framecapturer.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/main.cpp -------------------------------------------------------------------------------- /qt-dxgi-screenshot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/qt-dxgi-screenshot.pro -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripolskypetr/qt-dxgi-screenshot/HEAD/screenshot.png --------------------------------------------------------------------------------