OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VertexFrame
(Results
1 - 13
of
13
) sorted by null
/frameworks/base/media/mca/filterfw/native/core/
vertex_frame.h
25
// 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
{
32
// Create a
VertexFrame
of the specified size (in bytes).
33
explicit
VertexFrame
(int size);
35
~
VertexFrame
();
vertex_frame.cpp
28
VertexFrame
::
VertexFrame
(int size)
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 {
gl_env.h
40
class
VertexFrame
;
183
void AttachVertexFrame(int key,
VertexFrame
* frame);
191
VertexFrame
* VertexFrameWithKey(int key);
256
std::map<int,
VertexFrame
*> attached_vframes_;
gl_env.cpp
397
void GLEnv::AttachVertexFrame(int key,
VertexFrame
* frame) {
398
VertexFrame
* existingFrame = VertexFrameWithKey(key);
408
VertexFrame
* GLEnv::VertexFrameWithKey(int key) {
shader_program.h
38
class
VertexFrame
;
242
// Set attribute values that differ across vertexes, using a
VertexFrame
.
259
const
VertexFrame
* data,
287
// vertex data does not change, it is recommended to use a
VertexFrame
.
shader_program.cpp
945
const
VertexFrame
* vbo,
[
all
...]
/frameworks/base/media/mca/filterfw/jni/
jni_vertex_frame.cpp
22
using android::filterfw::
VertexFrame
;
27
return ToJBool(WrapObjectInJava(new
VertexFrame
(size), env, thiz, true));
31
return ToJBool(DeleteNativeObject<
VertexFrame
>(env, thiz));
38
VertexFrame
* frame = ConvertFromJava<
VertexFrame
>(env, thiz);
55
VertexFrame
* frame = ConvertFromJava<
VertexFrame
>(env, thiz);
74
VertexFrame
* frame = ConvertFromJava<
VertexFrame
>(env, thiz);
88
VertexFrame
* frame = ConvertFromJava<VertexFrame>(env, thiz)
[
all
...]
jni_init.cpp
40
ObjectPool<
VertexFrame
>::Setup("android/filterfw/core/
VertexFrame
", "vertexFrameId");
jni_shader_program.cpp
36
using android::filterfw::
VertexFrame
;
307
VertexFrame
* v_frame = ConvertFromJava<
VertexFrame
>(env, vertex_frame);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrameManager.java
26
import android.filterfw.core.
VertexFrame
;
78
result = new
VertexFrame
(format, this);
VertexFrame.java
30
public class
VertexFrame
extends Frame {
34
VertexFrame
(FrameFormat format, FrameManager frameManager) {
125
return "
VertexFrame
(" + getFormat() + ") with VBO ID " + getVboId();
ShaderProgram.java
24
import android.filterfw.core.
VertexFrame
;
152
VertexFrame
vertexData,
294
VertexFrame
vertexData,
/external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar
Completed in 198 milliseconds