Home | History | Annotate | Download | only in gd3d11

Lines Matching refs:data_size

654 	unsigned data_size;
656 GalliumD3D11Asynchronous(GalliumD3D11Screen* device, struct pipe_query* query, unsigned data_size)
657 : GalliumD3D11DeviceChild<Base>(device), query(query), data_size(data_size)
667 return data_size;
683 unsigned data_size,
686 return this->device->GetData(this, out_data, data_size, get_data_flags);
695 GalliumD3D11QueryOrPredicate(GalliumD3D11Screen* device, struct pipe_query* query, unsigned data_size, const D3D11_QUERY_DESC& desc)
696 : GalliumD3D11Asynchronous<Base>(device, query, data_size), desc(desc)
708 GalliumD3D11Query(GalliumD3D11Screen* device, struct pipe_query* query, unsigned data_size, const D3D11_QUERY_DESC& desc)
709 : GalliumD3D11QueryOrPredicate<ID3D11Query>(device, query, data_size, desc)
715 GalliumD3D11Predicate(GalliumD3D11Screen* device, struct pipe_query* query, unsigned data_size, const D3D11_QUERY_DESC& desc)
716 : GalliumD3D11QueryOrPredicate<ID3D11Predicate>(device, query, data_size, desc)
728 GalliumD3D11Counter(GalliumD3D11Screen* device, struct pipe_query* query, unsigned data_size, const D3D11_COUNTER_DESC& desc)
729 : GalliumD3D11Asynchronous<ID3D11Counter>(device, query, data_size), desc(desc)