HomeSort by relevance Sort by last modified time
    Searched refs:rtvDesc (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
RenderTarget11.cpp 65 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
66 view->GetDesc(&rtvDesc);
71 switch (rtvDesc.ViewDimension)
74 mipSlice = rtvDesc.Texture1D.MipSlice;
79 mipSlice = rtvDesc.Texture1DArray.MipSlice;
80 arraySlice = rtvDesc.Texture1DArray.FirstArraySlice;
84 mipSlice = rtvDesc.Texture2D.MipSlice;
89 mipSlice = rtvDesc.Texture2DArray.MipSlice;
90 arraySlice = rtvDesc.Texture2DArray.FirstArraySlice;
100 arraySlice = rtvDesc.Texture2DMSArray.FirstArraySlice
    [all...]
TextureStorage11.cpp 426 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
427 offscreenRTV->GetDesc(&rtvDesc);
428 mRenderTargetFormat = rtvDesc.Format;
632 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
633 rtvDesc.Format = mRenderTargetFormat;
634 rtvDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
635 rtvDesc.Texture2D.MipSlice = mTopLevel + level;
638 HRESULT result = device->CreateRenderTargetView(mTexture, &rtvDesc, &rtv);
775 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
776 rtvDesc.Format = mSwizzleRenderTargetFormat
    [all...]

Completed in 282 milliseconds