OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GLFrame
(Results
1 - 7
of
7
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLFrame.java
20
* A
GLFrame
is used to keep track of the start and end {@link GLCall} indices
23
public class
GLFrame
{
29
* Construct a {@link
GLFrame
} given the range of {@link GLCall}s spanning this frame.
34
public
GLFrame
(int frameIndex, int startCallIndex, int endCallIndex) {
/frameworks/base/media/mca/filterfw/native/core/
gl_frame.h
32
// A
GLFrame
stores pixel data on the GPU. While pixel data may be uploaded to
33
// a
GLFrame
and also read out of a
GLFrame
(access in place is not supported),
35
// processing from one
GLFrame
to another.
36
class
GLFrame
: public GLBufferHandle {
38
// Create an empty GL frame in the specified GL environment. Note, that the
GLFrame
does NOT
39
// take ownership. The caller must make sure the GLEnv stays valid as long as the
GLFrame
is
41
GLFrame
(GLEnv* gl_env);
44
~
GLFrame
();
67
bool CopyPixelsFrom(const
GLFrame
* frame)
[
all
...]
gl_frame.cpp
31
// A
GLFrame
stores pixel data on the GPU. It uses two kinds of GL data
34
// and when pixel data is uploaded to a
GLFrame
. The FBO is used as a rendering
38
GLFrame
::
GLFrame
(GLEnv* gl_env)
56
bool
GLFrame
::Init(int width, int height) {
65
bool
GLFrame
::InitWithTexture(GLint texture_id, int width, int height) {
72
bool
GLFrame
::InitWithFbo(GLint fbo_id, int width, int height) {
80
bool
GLFrame
::InitWithExternalTexture() {
87
void
GLFrame
::InitDimensions(int width, int height) {
94
GLFrame
::~GLFrame()
[
all
...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java
47
public class
GLFrame
extends Frame {
70
GLFrame
(FrameFormat format, FrameManager frameManager) {
74
GLFrame
(FrameFormat format, FrameManager frameManager, int bindingType, long bindingId) {
267
} else if (frame instanceof
GLFrame
) {
268
nativeCopyFromGL((
GLFrame
)frame);
299
"for
GLFrame
!");
313
throw new RuntimeException("Could not focus on
GLFrame
for drawing!");
319
return "
GLFrame
id: " + glFrameId + " (" + getFormat() + ") with texture ID "
326
throw new RuntimeException("Could not reset
GLFrame
texture parameters!");
410
private native boolean nativeCopyFromGL(
GLFrame
frame)
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar
android-all-4.2.2_r1.2-robolectric-0.jar
android-all-4.3_r2-robolectric-0.jar
Completed in 2676 milliseconds