Searched refs:createBuffer (Results 1 - 25 of 35) sorted by relevance

12

/external/webkit/Source/WebCore/webaudio/
H A DAudioContext.idl47 // AudioBuffer createBuffer(in unsigned long numberOfChannels, in unsigned long numberOfFrames, in float sampleRate);
48 // AudioBuffer createBuffer(in ArrayBuffer buffer, in boolean mixToMono);
49 [Custom] AudioBuffer createBuffer()
H A DAudioContext.h91 PassRefPtr<AudioBuffer> createBuffer(unsigned numberOfChannels, size_t numberOfFrames, double sampleRate);
92 PassRefPtr<AudioBuffer> createBuffer(ArrayBuffer* arrayBuffer, bool mixToMono);
H A DAudioContext.cpp232 PassRefPtr<AudioBuffer> AudioContext::createBuffer(unsigned numberOfChannels, size_t numberOfFrames, double sampleRate) function in class:WebCore::AudioContext
237 PassRefPtr<AudioBuffer> AudioContext::createBuffer(ArrayBuffer* arrayBuffer, bool mixToMono) function in class:WebCore::AudioContext
/external/webkit/Source/WebCore/bindings/js/
H A DJSAudioContextCustom.cpp81 JSValue JSAudioContext::createBuffer(ExecState* exec) function in class:WebCore::JSAudioContext
89 // AudioBuffer createBuffer(in ArrayBuffer buffer, in boolean mixToMono);
97 RefPtr<AudioBuffer> audioBuffer = audioContext->createBuffer(arrayBuffer, mixToMono);
107 // AudioBuffer createBuffer(in unsigned long numberOfChannels, in unsigned long numberOfFrames, in float sampleRate);
115 RefPtr<AudioBuffer> audioBuffer = audioContext->createBuffer(numberOfChannels, numberOfFrames, sampleRate);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGeometryBinding.cpp52 GLC(m_context, m_quadVerticesVbo = m_context->createBuffer());
53 GLC(m_context, m_quadElementsVbo = m_context->createBuffer());
H A DGLES2Canvas.cpp615 m_pathVertexBuffer = m_context->graphicsContext3D()->createBuffer();
617 m_pathIndexBuffer = m_context->graphicsContext3D()->createBuffer();
716 m_pathVertexBuffer = m_context->createBuffer();
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8AudioContextCustom.cpp100 // AudioBuffer createBuffer(in ArrayBuffer buffer, in boolean mixToMono);
109 RefPtr<AudioBuffer> audioBuffer = audioContext->createBuffer(arrayBuffer, mixToMono);
119 // AudioBuffer createBuffer(in unsigned long numberOfChannels, in unsigned long numberOfFrames, in float sampleRate);
135 RefPtr<AudioBuffer> audioBuffer = audioContext->createBuffer(numberOfChannels, numberOfFrames, sampleRate);
/external/skia/src/gpu/
H A DGrBufferAllocPool.h71 * createBuffer a virtual except that we want to use it in the cons for
148 GrGeometryBuffer* createBuffer(size_t size);
H A DGrBufferAllocPool.cpp47 GrGeometryBuffer* buffer = this->createBuffer(fMinBlockSize);
277 block.fBuffer = this->createBuffer(size);
354 GrGeometryBuffer* GrBufferAllocPool::createBuffer(size_t size) { function in class:GrBufferAllocPool
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DResourceManager.h45 GLuint createBuffer();
H A DResourceManager.cpp67 GLuint ResourceManager::createBuffer() function in class:gl::ResourceManager
H A DContext.h325 GLuint createBuffer();
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DFloatToFixed.java70 Buffer newBuf = VertexBuffer.createBuffer(posFmt, positions.getNumComponents(),
100 Buffer newBuf = VertexBuffer.createBuffer(tcFmt,
131 Buffer newBuf = VertexBuffer.createBuffer(targetFmt, vb.getNumComponents(), src.size());
H A DModelConverter.java85 Buffer buf = VertexBuffer.createBuffer(original.getFormat(),
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLBuffer.cpp49 setObject(context()->graphicsContext3D()->createBuffer());
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DSharedGraphicsContext3D.cpp178 Platform3DObject SharedGraphicsContext3D::createBuffer() function in class:WebCore::SharedGraphicsContext3D
180 return m_context->createBuffer();
353 m_quadVertices = m_context->createBuffer();
H A DSharedGraphicsContext3D.h89 Platform3DObject createBuffer();
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTriangleCollector.java142 Buffer b = VertexBuffer.createBuffer(vb.getFormat(),
H A DGeometryBatchFactory.java163 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalTris);
165 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalVerts);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DBatchNode.java442 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalTris);
444 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalVerts);
H A DVertexBuffer.java850 public static Buffer createBuffer(Format format, int components, int numElements){ method in class:VertexBuffer
H A DMesh.java1133 Buffer buffer = VertexBuffer.createBuffer(oldVb.getFormat(), oldVb.getNumComponents(), newNumVerts);
/external/webkit/Source/WebKit/chromium/public/
H A DWebGraphicsContext3D.h328 virtual WebGLId createBuffer() = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DInternal.h232 Platform3DObject createBuffer();
H A DGraphicsContext3DChromium.cpp712 DELEGATE_TO_IMPL_R(createBuffer, Platform3DObject)
1133 DELEGATE_TO_INTERNAL_R(createBuffer, Platform3DObject)

Completed in 417 milliseconds

12