webappmanager
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RemoteWindowDataOpenGLTextureShared.h
Go to the documentation of this file.
1 /* @@@LICENSE
2 *
3 * Copyright (c) 2010-2012 Hewlett-Packard Development Company, L.P.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * LICENSE@@@ */
18 
19 
20 
21 
22 #ifndef REMOTEWINDOWDATAOPENGLTEXTURESHARED_H
23 #define REMOTEWINDOWDATAOPENGLTEXTURESHARED_H
24 
25 #include "Common.h"
26 
27 #include "RemoteWindowData.h"
28 
29 class PGContext;
30 class TextureSharedRenderingWindow;
31 
33 {
34 public:
35 
38 
39  virtual int key() const { return m_key; }
40  virtual int width() const { return m_width; }
41  virtual int height() const { return m_height; }
42  virtual bool hasAlpha() const { return m_hasAlpha; }
43  virtual bool needsClear() const;
44  virtual void flip();
45 
46  virtual PGContext* renderingContext();
47  virtual void beginPaint();
48  virtual void endPaint(bool preserveOnFlip, const PRect& rect, bool flipBuffers = true);
49  virtual void sendWindowUpdate(int x, int y, int w, int h);
50 
51  virtual bool hasDirectRendering() const { return true; }
52  virtual bool directRenderingAllowed(bool val);
53 
54 private:
55 
56  int m_key;
57  int m_width;
58  int m_height;
59  bool m_hasAlpha;
60 
61  PGContext* m_context;
63  bool m_directRendering;
64 
65 private:
66 
68 
71 };
72 
73 #endif /* REMOTEWINDOWDATAOPENGLTEXTURESHARED_H */