Searched defs:VertexFrame (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/mca/filterfw/native/core/
H A Dvertex_frame.cpp28 VertexFrame::VertexFrame(int size) function in class:android::filterfw::VertexFrame
33 VertexFrame::~VertexFrame() {
37 bool VertexFrame::CreateBuffer() {
42 bool VertexFrame::WriteData(const uint8_t* data, int size) {
46 ALOGE("VertexFrame: Could not create vertex buffer!");
60 ALOGE("VertexFrame: Attempting to upload more data (%d bytes) than fits "
75 int VertexFrame::Size() const {
H A Dvertex_frame.h25 // A VertexFrame stores vertex attribute data in a VBO. Unlike other frames,
26 // you often create instances of VertexFrame yourself, to pass vertex data to
28 // supported. Once data is uploaded to a VertexFrame, it cannot be read from
30 class VertexFrame { class in namespace:android::filterfw
32 // Create a VertexFrame of the specified size (in bytes).
33 explicit VertexFrame(int size);
35 ~VertexFrame();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DVertexFrame.java30 public class VertexFrame extends Frame { class in inherits:Frame
34 VertexFrame(FrameFormat format, FrameManager frameManager) { method in class:VertexFrame
125 return "VertexFrame (" + getFormat() + ") with VBO ID " + getVboId();

Completed in 869 milliseconds