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

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
RenderTarget11.cpp 67 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
68 view->GetDesc(&rtvDesc);
73 switch (rtvDesc.ViewDimension)
76 mipSlice = rtvDesc.Texture1D.MipSlice;
81 mipSlice = rtvDesc.Texture1DArray.MipSlice;
82 arraySlice = rtvDesc.Texture1DArray.FirstArraySlice;
86 mipSlice = rtvDesc.Texture2D.MipSlice;
91 mipSlice = rtvDesc.Texture2DArray.MipSlice;
92 arraySlice = rtvDesc.Texture2DArray.FirstArraySlice;
102 arraySlice = rtvDesc.Texture2DMSArray.FirstArraySlice
    [all...]
TextureStorage11.cpp 400 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
401 offscreenRTV->GetDesc(&rtvDesc);
402 mRenderTargetFormat = rtvDesc.Format;
520 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
521 rtvDesc.Format = mRenderTargetFormat;
522 rtvDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
523 rtvDesc.Texture2D.MipSlice = mTopLevel + level;
526 HRESULT result = device->CreateRenderTargetView(mTexture, &rtvDesc, &rtv);
655 D3D11_RENDER_TARGET_VIEW_DESC rtvDesc;
656 rtvDesc.Format = mSwizzleRenderTargetFormat
    [all...]

Completed in 68 milliseconds