Searched defs:creation_flags (Results 1 - 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11.cpp224 HRESULT STDMETHODCALLTYPE GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice) argument
226 if(creation_flags & D3D11_CREATE_DEVICE_SINGLETHREADED)
227 *ppDevice = new GalliumD3D11ScreenImpl<false>(screen, context, owns_context, creation_flags, adapter);
229 *ppDevice = new GalliumD3D11ScreenImpl<true>(screen, context, owns_context, creation_flags, adapter);
233 HRESULT STDMETHODCALLTYPE GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice) argument
235 if(creation_flags & D3D10_CREATE_DEVICE_SINGLETHREADED)
236 *ppDevice = new GalliumD3D10Device<false>(screen, context, owns_context, creation_flags, adapter);
238 *ppDevice = new GalliumD3D10Device<true>(screen, context, owns_context, creation_flags, adapter);
H A Dd3d11_screen.h97 unsigned creation_flags; member in struct:GalliumD3D11ScreenImpl
106 GalliumD3D11ScreenImpl(struct pipe_screen* screen, struct pipe_context* immediate_pipe, BOOL owns_immediate_pipe,unsigned creation_flags, IDXGIAdapter* adapter) argument
107 : GalliumD3D11Screen(screen, immediate_pipe, adapter), creation_flags(creation_flags)
185 return creation_flags;
H A Dd3d11_context.h128 GalliumD3D10Device(pipe_screen* screen, pipe_context* pipe, bool owns_pipe, unsigned creation_flags, IDXGIAdapter* adapter) argument
129 : GalliumD3D10ScreenImpl<threadsafe>(screen, pipe, owns_pipe, creation_flags, adapter), pipe(pipe), owns_pipe(owns_pipe), context_flags(0)

Completed in 114 milliseconds