Home | History | Annotate | Download | only in libGLESv2

Lines Matching refs:description

180         D3DSURFACE_DESC description;
181 renderTarget->GetDesc(&description);
183 setSize(description.Width, description.Height);
184 mFormat = dx2es::ConvertBackBufferFormat(description.Format);
185 mD3DFormat = description.Format;
186 mSamples = es2dx::GetSamplesFromMultisampleType(description.MultiSampleType);
253 D3DSURFACE_DESC description;
254 mRenderTarget->GetDesc(&description);
256 return es2dx::GetRedSize(description.Format);
266 D3DSURFACE_DESC description;
267 mRenderTarget->GetDesc(&description);
269 return es2dx::GetGreenSize(description.Format);
279 D3DSURFACE_DESC description;
280 mRenderTarget->GetDesc(&description);
282 return es2dx::GetBlueSize(description.Format);
292 D3DSURFACE_DESC description;
293 mRenderTarget->GetDesc(&description);
295 return es2dx::GetAlphaSize(description.Format);
312 D3DSURFACE_DESC description;
313 depthStencil->GetDesc(&description);
315 setSize(description.Width, description.Height);
316 mFormat = dx2es::ConvertDepthStencilFormat(description.Format);
317 mSamples = es2dx::GetSamplesFromMultisampleType(description.MultiSampleType);
318 mD3DFormat = description.Format;
380 D3DSURFACE_DESC description;
381 mDepthStencil->GetDesc(&description);
383 return es2dx::GetDepthSize(description.Format);
393 D3DSURFACE_DESC description;
394 mDepthStencil->GetDesc(&description);
396 return es2dx::GetStencilSize(description.Format);