Lines Matching defs:height
40 void setupSurfaces(int width, int height);
49 void resize(int width, int height) override;
92 unsigned int height = windowRect.bottom - windowRect.top;
103 swapChainDesc.Height = height;
122 this->setupSurfaces(width, height);
134 fHeight = height;
137 void D3D12WindowContext::setupSurfaces(int width, int height) {
150 fBuffers[i]->GetDesc().Height == (UINT64)height);
154 GrBackendTexture backendTexture(width, height, info);
159 GrBackendRenderTarget backendRT(width, height, info);
211 void D3D12WindowContext::resize(int width, int height) {
227 GR_D3D_CALL_ERRCHECK(fSwapChain->ResizeBuffers(0, width, height,
230 this->setupSurfaces(width, height);
233 fHeight = height;