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_dx11/src/libGLESv2/renderer/
RenderTarget11.cpp 22 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
23 view->GetDesc(&rtvDesc);
32 switch (rtvDesc.ViewDimension)
35 mipSlice = rtvDesc.Texture1D.MipSlice;
40 mipSlice = rtvDesc.Texture1DArray.MipSlice;
41 arraySlice = rtvDesc.Texture1DArray.FirstArraySlice;
45 mipSlice = rtvDesc.Texture2D.MipSlice;
50 mipSlice = rtvDesc.Texture2DArray.MipSlice;
51 arraySlice = rtvDesc.Texture2DArray.FirstArraySlice;
61 arraySlice = rtvDesc.Texture2DMSArray.FirstArraySlice
    [all...]
TextureStorage11.cpp 216 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
217 offscreenRTV->GetDesc(&rtvDesc);
218 mRenderTargetFormat = rtvDesc.Format;
347 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
348 rtvDesc.Format = mRenderTargetFormat;
349 rtvDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
350 rtvDesc.Texture2D.MipSlice = level;
353 result = device->CreateRenderTargetView(mTexture, &rtvDesc, &rtv);
569 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
570 rtvDesc.Format = mRenderTargetFormat
    [all...]

Completed in 37 milliseconds