HomeSort by relevance Sort by last modified time
    Searched full:creation_flags (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11.cpp 224 HRESULT STDMETHODCALLTYPE GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice)
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)
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);
d3d11_screen.h 97 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)
107 : GalliumD3D11Screen(screen, immediate_pipe, adapter), creation_flags(creation_flags)
185 return creation_flags;
    [all...]
d3d11_context.h 128 GalliumD3D10Device(pipe_screen* screen, pipe_context* pipe, bool owns_pipe, unsigned creation_flags, IDXGIAdapter* adapter)
129 : GalliumD3D10ScreenImpl<threadsafe>(screen, pipe, owns_pipe, creation_flags, adapter), pipe(pipe), owns_pipe(owns_pipe), context_flags(0)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumd3d10_1.idl 35 HRESULT GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice);
galliumd3d11.idl 35 HRESULT GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice);

Completed in 174 milliseconds