Home | History | Annotate | Download | only in ut_renderer

Lines Matching full:clienthandle

29     class ClientHandle {
33 ClientHandle(unsigned int _pid, unsigned int _handle) : pid(_pid), handle(_handle) {}
35 bool operator< (const ClientHandle & p) const {
42 int createSurface(RenderingThread *thread, const ClientHandle & handle);
43 int destroySurface(RenderingThread *thread, const ClientHandle &handle);
44 int createContext(RenderingThread *thread, const ClientHandle & ctx, const ClientHandle shareCtx, int version);
45 int destroyContext(RenderingThread *thread,const ClientHandle & ctx);
47 const ClientHandle & drawSurface, const ClientHandle & readSurface, const ClientHandle & ctx);
48 int swapBuffers(RenderingThread *thread, const ClientHandle & surface);
51 typedef std::map<ClientHandle, RendererSurface *> SurfaceMap;
52 typedef std::map<ClientHandle, RendererContext *> ContextMap;