Searched refs:mDevice (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
D | Display.cpp | 31 mDevice = NULL; in Display() 238 if (mDevice) in terminate() 241 if (FAILED(mDevice->TestCooperativeLevel())) in terminate() 246 mDevice->Release(); in terminate() 247 mDevice = NULL; in terminate() 279 long result = mDevice->BeginScene(); in startScene() 289 long result = mDevice->EndScene(); in endScene() 347 …rFlags | D3DCREATE_HARDWARE_VERTEXPROCESSING | D3DCREATE_PUREDEVICE, &presentParameters, &mDevice); in createDevice() 356 … mDeviceWindow, behaviorFlags | D3DCREATE_SOFTWARE_VERTEXPROCESSING, &presentParameters, &mDevice); in createDevice() 366 mDevice->SetRenderState(D3DRS_POINTSPRITEENABLE, TRUE); in createDevice() [all …]
|
D | Display.h | 84 IDirect3DDevice9 *mDevice; variable
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/ |
D | IndexDataManager.cpp | 26 IndexDataManager::IndexDataManager(Context *context, IDirect3DDevice9 *device) : mDevice(device) in IndexDataManager() 28 …mStreamingBufferShort = new StreamingIndexBuffer(mDevice, INITIAL_INDEX_BUFFER_SIZE, D3DFMT_INDEX1… in IndexDataManager() 32 …mStreamingBufferInt = new StreamingIndexBuffer(mDevice, INITIAL_INDEX_BUFFER_SIZE, D3DFMT_INDEX32); in IndexDataManager() 207 IndexBuffer::IndexBuffer(IDirect3DDevice9 *device, UINT size, D3DFORMAT format) : mDevice(device), … in IndexBuffer() 285 …HRESULT result = mDevice->CreateIndexBuffer(mBufferSize, D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, ty… in reserveSpace() 338 …HRESULT result = mDevice->CreateIndexBuffer(requiredSpace, D3DUSAGE_WRITEONLY, type == GL_UNSIGNED… in reserveSpace()
|
D | VertexDataManager.cpp | 29 …:VertexDataManager(Context *context, IDirect3DDevice9 *device) : mContext(context), mDevice(device) in VertexDataManager() 40 mStreamingBuffer = new StreamingVertexBuffer(mDevice, INITIAL_STREAM_BUFFER_SIZE); in VertexDataManager() 251 …mCurrentValueBuffer[i] = new ConstantVertexBuffer(mDevice, attribs[i].mCurrentValue[0], attribs[i]… in prepareVertexData() 519 …mDevice->SetStreamSource(i, attributes[i].vertexBuffer, attributes[i].offset, attributes[i].stride… in setupAttributes() 535 mDevice->CreateVertexDeclaration(elements, &vertexDeclaration); in setupAttributes() 536 mDevice->SetVertexDeclaration(vertexDeclaration); in setupAttributes() 540 VertexBuffer::VertexBuffer(IDirect3DDevice9 *device, std::size_t size, DWORD usageFlags) : mDevice(… in VertexBuffer() 669 …HRESULT result = mDevice->CreateVertexBuffer(mBufferSize, D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, 0… in reserveRequiredSpace() 731 …HRESULT result = mDevice->CreateVertexBuffer(mRequiredSpace, D3DUSAGE_WRITEONLY, 0, pool, &mVertex… in reserveRequiredSpace()
|
D | IndexDataManager.h | 47 IDirect3DDevice9 *const mDevice; 112 IDirect3DDevice9 *const mDevice; variable
|
D | VertexDataManager.h | 47 IDirect3DDevice9 *const mDevice; 132 IDirect3DDevice9 *const mDevice; variable
|