spice/client/x11/pixels_source_p.h
Marc-André Lureau 359fc1cb5d Use the spice-common submodule
This patch will replace the common/ directory with the spice-common
project. It is for now a simple project subdirectory shared with
spice-gtk, but the goal is to make it a proper library later on.

With this change, the spice-server build is broken. The following
commits fix the build, and have been seperated to ease the review.

v2
- moves all the generated marshallers to spice-common library
- don't attempt to fix windows VS build, which should somehow be
  splitted with spice-common (or built from tarball only to avoid
  generation tools/libs deps)
v3
- uses libspice-common-client
- fix a mutex.h inclusion reported by Alon
2012-03-25 18:59:10 +02:00

93 lines
2.3 KiB
C

/*
Copyright (C) 2009 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _H_PIXELE_SOURSR_P
#define _H_PIXELE_SOURSR_P
#include <X11/X.h>
#ifdef USE_OPENGL
#include <GL/glu.h>
#endif // USE_OPENGL
#include <X11/Xdefs.h>
#include <X11/Xutil.h> // required by Xshm.h, but not included by it
#include <X11/extensions/XShm.h>
#include "red_window.h"
#ifdef USE_OPENGL
#include "red_pixmap_gl.h"
#endif // USE_OPENGL
#include "common/pixman_utils.h"
enum {
PIXELS_SOURCE_TYPE_INVALID,
PIXELS_SOURCE_TYPE_X_DRAWABLE,
PIXELS_SOURCE_TYPE_PIXMAP,
#ifdef USE_OPENGL
PIXELS_SOURCE_TYPE_GL_TEXTURE,
PIXELS_SOURCE_TYPE_GL_DRAWABLE,
#endif // USE_OPENGL
};
struct PixelsSource_p {
int type;
union {
struct {
XImage* x_image;
XShmSegmentInfo *shminfo;
pixman_image_t* pixman_image;
RedDrawable::Format format;
} pixmap;
struct {
Drawable drawable;
int screen;
GC gc;
int width, height;
#ifdef USE_OPENGL
RenderType rendertype;
union {
GLXPbuffer pbuff;
GLuint fbo;
};
RedGlContext context;
#endif // USE_OPENGL
} x_drawable;
#ifdef USE_OPENGL
struct {
RenderType rendertype;
Win win;
GLuint tex;
GLuint stencil_tex;
int width, height;
int width_powed, height_powed;
union {
GLXPbuffer pbuff;
GLuint fbo;
};
RedGlContext context;
} gl;
#endif // USE_OPENGL
};
};
struct RedDrawable_p {
PixelsSource_p source;
};
#endif