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 std::unique_ptr<VertexFrame> frame(new VertexFrame(size)); in Java_android_filterfw_core_VertexFrame_nativeAllocate() 32 return ToJBool(DeleteNativeObject<VertexFrame>(env, thiz)); in Java_android_filterfw_core_VertexFrame_nativeDeallocate() 39 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeInts() 56 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeFloats() 75 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz); in Java_android_filterfw_core_VertexFrame_setNativeData() 89 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; 300 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 | 41 class VertexFrame; variable 184 void AttachVertexFrame(int key, VertexFrame* frame); 192 VertexFrame* VertexFrameWithKey(int key); 257 std::map<int, VertexFrame*> attached_vframes_;
|
D | gl_env.cpp | 400 void GLEnv::AttachVertexFrame(int key, VertexFrame* frame) { in AttachVertexFrame() 401 VertexFrame* existingFrame = VertexFrameWithKey(key); in AttachVertexFrame() 411 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()
|