Home
last modified time | relevance | path

Searched refs:mDevice (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
DDisplay.cpp31 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 …]
DDisplay.h84 IDirect3DDevice9 *mDevice; variable
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
DIndexDataManager.cpp26 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()
DVertexDataManager.cpp29 …: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()
519mDevice->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()
DIndexDataManager.h47 IDirect3DDevice9 *const mDevice;
112 IDirect3DDevice9 *const mDevice; variable
DVertexDataManager.h47 IDirect3DDevice9 *const mDevice;
132 IDirect3DDevice9 *const mDevice; variable