/* Copyright 2011 Pierre Ossman for Cendio AB * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. */ #ifndef __X11PIXELBUFFER_H__ #define __X11PIXELBUFFER_H__ #include #include #include #include #include class PlatformPixelBuffer: public rfb::FullFramePixelBuffer { public: PlatformPixelBuffer(int width, int height); ~PlatformPixelBuffer(); void draw(int src_x, int src_y, int x, int y, int w, int h); int getStride() const; protected: int setupShm(); protected: XShmSegmentInfo *shminfo; XImage *xim; }; #endif lue='44287-fix-avatar-fed-share-receiver'>44287-fix-avatar-fed-share-receiver Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
blob: c7a5a7dac12f72b7a9de229a2078705f03499f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14