mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
fix row_pitch
This commit is contained in:
parent
e10c9a1fa1
commit
af1135d455
11
appveyor.yml
11
appveyor.yml
@ -8,17 +8,8 @@ environment:
|
|||||||
- BUILD_TYPE: Release
|
- BUILD_TYPE: Release
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sh: sudo add-apt-repository ppa:hnakamur/icu
|
|
||||||
- sh: sudo add-apt-repository ppa:hnakamur/boost
|
|
||||||
|
|
||||||
- sh: sudo add-apt-repository ppa:savoury1/build-tools
|
|
||||||
- sh: sudo add-apt-repository ppa:savoury1/backports
|
|
||||||
- sh: sudo add-apt-repository ppa:savoury1/graphics
|
|
||||||
- sh: sudo add-apt-repository ppa:savoury1/multimedia
|
|
||||||
- sh: sudo add-apt-repository ppa:savoury1/ffmpeg4
|
|
||||||
|
|
||||||
- sh: sudo apt update
|
- sh: sudo apt update
|
||||||
- sh: sudo apt install -y fakeroot cmake libssl-dev libavdevice-dev libboost-thread1.67-dev libboost-filesystem1.67-dev libboost-log1.67-dev libpulse-dev libopus-dev libxtst-dev libx11-dev libxfixes-dev libevdev-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev
|
- sh: sudo apt install -y fakeroot cmake libssl-dev libavdevice-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libpulse-dev libopus-dev libxtst-dev libx11-dev libxfixes-dev libevdev-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev
|
||||||
- sh: sudo update-alternatives --set gcc /usr/bin/gcc-8
|
- sh: sudo update-alternatives --set gcc /usr/bin/gcc-8
|
||||||
- cmd: C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -S mingw-w64-x86_64-openssl mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-opus mingw-w64-x86_64-x265 mingw-w64-x86_64-boost git yasm nasm diffutils make"
|
- cmd: C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -S mingw-w64-x86_64-openssl mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-opus mingw-w64-x86_64-x265 mingw-w64-x86_64-boost git yasm nasm diffutils make"
|
||||||
|
|
||||||
|
@ -252,7 +252,7 @@ std::shared_ptr<platf::img_t> display_ram_t::alloc_img() {
|
|||||||
auto img = std::make_shared<img_t>();
|
auto img = std::make_shared<img_t>();
|
||||||
|
|
||||||
img->pixel_pitch = 4;
|
img->pixel_pitch = 4;
|
||||||
img->row_pitch = img->pixel_pitch * width;
|
img->row_pitch = img_info.RowPitch;
|
||||||
img->width = width;
|
img->width = width;
|
||||||
img->height = height;
|
img->height = height;
|
||||||
img->data = new std::uint8_t[img->row_pitch * height];
|
img->data = new std::uint8_t[img->row_pitch * height];
|
||||||
@ -298,4 +298,4 @@ int display_ram_t::init() {
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user