76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
// Filename: tinyXGraphicsPipe.h
|
|
// Created by: drose (03May08)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TINYXGRAPHICSPIPE_H
|
|
#define TINYXGRAPHICSPIPE_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#ifdef HAVE_X11
|
|
|
|
#include "x11GraphicsWindow.h"
|
|
#include "x11GraphicsPipe.h"
|
|
#include "tinyGraphicsStateGuardian.h"
|
|
#include "lightMutex.h"
|
|
#include "lightReMutex.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : TinyXGraphicsPipe
|
|
// Description : This graphics pipe represents the interface for
|
|
// creating TinyPanda graphics windows on an X11-based
|
|
// (e.g. Unix) client.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_TINYDISPLAY TinyXGraphicsPipe : public x11GraphicsPipe {
|
|
public:
|
|
TinyXGraphicsPipe(const string &display = string());
|
|
virtual ~TinyXGraphicsPipe();
|
|
|
|
virtual string get_interface_name() const;
|
|
static PT(GraphicsPipe) pipe_constructor();
|
|
|
|
protected:
|
|
virtual PT(GraphicsOutput) make_output(const string &name,
|
|
const FrameBufferProperties &fb_prop,
|
|
const WindowProperties &win_prop,
|
|
int flags,
|
|
GraphicsEngine *engine,
|
|
GraphicsStateGuardian *gsg,
|
|
GraphicsOutput *host,
|
|
int retry,
|
|
bool &precertify);
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
x11GraphicsPipe::init_type();
|
|
register_type(_type_handle, "TinyXGraphicsPipe",
|
|
x11GraphicsPipe::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "tinyXGraphicsPipe.I"
|
|
|
|
#endif // HAVE_X11
|
|
|
|
#endif
|