Searched refs:VertexFrame (Results 1 – 12 of 12) sorted by relevance
/frameworks/base/media/mca/filterfw/jni/ |
D | jni_vertex_frame.cpp | 22 using android::filterfw::VertexFrame; 27 return ToJBool(WrapObjectInJava(new VertexFrame(size), env, thiz, true)); in Java_android_filterfw_core_VertexFrame_nativeAllocate() 31 return ToJBool(DeleteNativeObject<VertexFrame>(env, thiz)); in Java_android_filterfw_core_VertexFrame_nativeDeallocate() 38 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeInts() 55 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeFloats() 74 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeData() 88 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_getNativeVboId()
|
D | jni_init.cpp | 40 ObjectPool<VertexFrame>::Setup("android/filterfw/core/VertexFrame", "vertexFrameId"); in JNI_OnLoad()
|
D | jni_shader_program.cpp | 36 using android::filterfw::VertexFrame; 307 VertexFrame* v_frame = ConvertFromJava<VertexFrame>(env, vertex_frame); in Java_android_filterfw_core_ShaderProgram_setShaderAttributeVertexFrame()
|
/frameworks/base/media/mca/filterfw/native/core/ |
D | vertex_frame.cpp | 28 VertexFrame::VertexFrame(int size) in VertexFrame() function in android::filterfw::VertexFrame 33 VertexFrame::~VertexFrame() { in ~VertexFrame() 37 bool VertexFrame::CreateBuffer() { in CreateBuffer() 42 bool VertexFrame::WriteData(const uint8_t* data, int size) { in WriteData() 75 int VertexFrame::Size() const { in Size()
|
D | vertex_frame.h | 30 class VertexFrame { 33 explicit VertexFrame(int size); 35 ~VertexFrame();
|
D | gl_env.h | 40 class VertexFrame; variable 183 void AttachVertexFrame(int key, VertexFrame* frame); 191 VertexFrame* VertexFrameWithKey(int key); 256 std::map<int, VertexFrame*> attached_vframes_;
|
D | gl_env.cpp | 397 void GLEnv::AttachVertexFrame(int key, VertexFrame* frame) { in AttachVertexFrame() 398 VertexFrame* existingFrame = VertexFrameWithKey(key); in AttachVertexFrame() 408 VertexFrame* GLEnv::VertexFrameWithKey(int key) { in VertexFrameWithKey()
|
D | shader_program.h | 38 class VertexFrame; variable 259 const VertexFrame* data,
|
D | shader_program.cpp | 945 const VertexFrame* vbo, in SetAttributeValues()
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | VertexFrame.java | 30 public class VertexFrame extends Frame { class 34 VertexFrame(FrameFormat format, FrameManager frameManager) { in VertexFrame() method in VertexFrame
|
D | SimpleFrameManager.java | 26 import android.filterfw.core.VertexFrame; 78 result = new VertexFrame(format, this); in createNewFrame()
|
D | ShaderProgram.java | 24 import android.filterfw.core.VertexFrame; 152 VertexFrame vertexData, in setAttributeValues() 294 VertexFrame vertexData, in setShaderAttributeVertexFrame()
|