Home | History | Annotate | Download | only in libGLESv2

Lines Matching full:device

156     IDirect3DDevice9 *device = getDevice();
158 HRESULT hr = device->CreateVertexBuffer(sizeof(quad), D3DUSAGE_WRITEONLY, 0, D3DPOOL_DEFAULT, &mQuadVertexBuffer, NULL);
177 hr = device->CreateVertexDeclaration(elements, &mQuadVertexDeclaration);
190 IDirect3DDevice9 *device = getDevice();
209 hr = (device->*createShader)(static_cast<const DWORD*>(shaderCode->GetBufferPointer()), &shader);
222 HRESULT hr = (device->*setShader)(shader);
265 IDirect3DDevice9 *device = getDevice();
269 device->SetTexture(0, texture);
270 device->SetRenderTarget(0, dest);
276 device->SetSamplerState(0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR);
277 device->SetSamplerState(0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR);
298 IDirect3DDevice9 *device = getDevice();
302 device->SetTexture(0, texture);
303 device->SetRenderTarget(0, dest);
391 IDirect3DDevice9 *device = getDevice();
398 HRESULT result = device->CreateTexture(sourceRect.right - sourceRect.left, sourceRect.bottom - sourceRect.top, 1, D3DUSAGE_RENDERTARGET, sourceDesc.Format, D3DPOOL_DEFAULT, &texture, NULL);
417 result = device->StretchRect(surface, &sourceRect, textureSurface, NULL, D3DTEXF_NONE);
433 IDirect3DDevice9 *device = getDevice();
442 device->SetViewport(&vp);
445 device->SetVertexShaderConstantF(0, halfPixelAdjust, 1);
450 IDirect3DDevice9 *device = getDevice();
452 device->SetDepthStencilSurface(NULL);
454 device->SetRenderState(D3DRS_FILLMODE, D3DFILL_SOLID);
455 device->SetRenderState(D3DRS_ALPHATESTENABLE, FALSE);
456 device->SetRenderState(D3DRS_ALPHABLENDENABLE, FALSE);
457 device->SetRenderState(D3DRS_CULLMODE, D3DCULL_NONE);
458 device->SetRenderState(D3DRS_CLIPPLANEENABLE, 0);
459 device->SetRenderState(D3DRS_COLORWRITEENABLE, D3DCOLORWRITEENABLE_ALPHA | D3DCOLORWRITEENABLE_BLUE | D3DCOLORWRITEENABLE_GREEN | D3DCOLORWRITEENABLE_RED);
460 device->SetRenderState(D3DRS_SRGBWRITEENABLE, FALSE);
461 device->SetRenderState(D3DRS_SCISSORTESTENABLE, FALSE);
463 device->SetSamplerState(0, D3DSAMP_MAGFILTER, D3DTEXF_POINT);
464 device->SetSamplerState(0, D3DSAMP_MINFILTER, D3DTEXF_POINT);
465 device->SetSamplerState(0, D3DSAMP_SRGBTEXTURE, FALSE);
466 device->SetSamplerState(0, D3DSAMP_ADDRESSU, D3DTADDRESS_CLAMP);
467 device->SetSamplerState(0, D3DSAMP_ADDRESSV, D3DTADDRESS_CLAMP);
470 device->SetScissorRect(&scissorRect);
476 IDirect3DDevice9 *device = getDevice();
478 HRESULT hr = device->SetStreamSource(0, mQuadVertexBuffer, 0, 2 * sizeof(float));
479 hr = device->SetVertexDeclaration(mQuadVertexDeclaration);
482 hr = device->DrawPrimitive(D3DPT_TRIANGLESTRIP, 0, 2);
487 IDirect3DDevice9 *device = getDevice();
491 device->GetDepthStencilSurface(&mSavedDepthStencil);
492 device->GetRenderTarget(0, &mSavedRenderTarget);
496 hr = device->BeginStateBlock();
503 device->SetVertexShader(NULL);
504 device->SetVertexShaderConstantF(0, dummyConst, 1);
505 device->SetPixelShader(NULL);
506 device->SetPixelShaderConstantF(0, dummyConst, 1);
516 device->SetViewport(&dummyVp);
518 device->SetTexture(0, NULL);
520 device->SetStreamSource(0, mQuadVertexBuffer, 0, 0);
522 device->SetVertexDeclaration(mQuadVertexDeclaration);
524 hr = device->EndStateBlock(&mSavedStateBlock);
539 IDirect3DDevice9 *device = getDevice();
541 device->SetDepthStencilSurface(mSavedDepthStencil);
548 device->SetRenderTarget(0, mSavedRenderTarget);