HomeSort by relevance Sort by last modified time
    Searched refs:contextId (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_egl.h 23 void GLTrace_eglCreateContext(int version, int contextId);
24 void GLTrace_eglMakeCurrent(int contextId);
gltrace_egl.cpp 28 void GLTrace_eglCreateContext(int version, int contextId) {
32 glmessage.set_context_id(contextId);
45 arg_context->add_intvalue(contextId);
54 void GLTrace_eglMakeCurrent(int contextId) {
58 glmessage.set_context_id(contextId);
65 arg_context->add_intvalue(contextId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gldebugger/
MessageQueueTest.java 60 final int contextId = 8784;
61 assertNull(queue.getPartialMessage(contextId));
63 builder.setContextId(contextId);
69 assertNotNull(queue.getPartialMessage(contextId));
76 assertNull(queue.getPartialMessage(contextId));
77 Message complete = queue.removeCompleteMessage(contextId);
79 assertEquals(contextId, complete.getContextId());
86 assertNull(queue.getPartialMessage(contextId));
87 complete = queue.removeCompleteMessage(contextId);
89 assertEquals(contextId, complete.getContextId())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageQueue.java 74 private void sendCommands(final int contextId) throws IOException {
78 if (command.getContextId() == contextId || command.getContextId() == 0) {
166 Message receiveMessage(final int contextId) throws IOException {
168 while (msg.getContextId() != contextId) {
182 Message getPartialMessage(final int contextId) {
183 return partials.get(contextId);
187 void completePartialMessage(final int contextId) {
188 final Message msg = partials.get(contextId);
189 partials.remove(contextId);
201 final int contextId = msg.getContextId()
    [all...]
BreakpointOption.java 80 void setBreakpoint(final int contextId, final Function function, final boolean enabled) {
82 builder.setContextId(contextId);
97 int contextId = 0;
99 contextId = mGLFramesView.current.contextId;
100 setBreakpoint(contextId, Function.valueOf(group.getText()), btn.getSelection());
115 final int contextId = msg.getContextId();
119 builder.setContextId(contextId);
164 if (queue.getPartialMessage(contextId) != null)
165 queue.completePartialMessage(contextId);
    [all...]
ShaderEditor.java 112 progs += Integer.toHexString(context.contextId) + ") ";
117 builder.append(String.format("%08X", context.contextId));
127 builder.append(String.format("%08X", ctx.contextId));
193 if (shader.context.context.contextId != current.context.context.contextId)
196 Integer.toHexString(current.context.context.contextId),
201 final int contextId = current.context.context.contextId;
202 Message.Builder builder = getBuilder(contextId);
209 Message.Builder getBuilder(int contextId) {
    [all...]
Context.java 127 final int contextId;
134 DebugContext(final int contextId) {
135 this.contextId = contextId;
136 currentContext = new Context(contextId);
138 file = new RandomAccessFile("0x" + Integer.toHexString(contextId) +
270 public final int contextId;
279 public Context(int contextId) {
280 this.contextId = contextId;
    [all...]
GLFramesView.java 425 int contextId = 0;
427 contextId = current.contextId;
431 + "context 0x" + Integer.toHexString(contextId) +
436 builder.setContextId(contextId);
449 int contextId = 0;
451 contextId = current.contextId;
455 + "context 0x" + Integer.toHexString(contextId) +
460 builder.setContextId(contextId);
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.idl 43 [Custom] DOMObject getContext(in DOMString contextId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
CurrentVboPropertyAccessor.java 33 public CurrentVboPropertyAccessor(int contextId, GLEnum target, GLStateType vboProperty) {
34 mContextId = contextId;
44 mVboBindingAccessor = GLPropertyAccessor.makeAccessor(contextId,
GLPropertyAccessor.java 36 private GLPropertyAccessor(int contextId, List<GLPropertyExtractor> extractors) {
37 mContextId = contextId;
59 * @param contextId id of affected context
66 public static IGLPropertyAccessor makeAccessor(int contextId, Object...accessors) {
80 return new GLPropertyAccessor(contextId, extractors);
TexturePropertyAccessor.java 35 public TexturePropertyAccessor(int contextId, GLStateType textureUnitTarget,
37 mContextId = contextId;
TextureUnitPropertyAccessor.java 33 public TextureUnitPropertyAccessor(int contextId, GLStateType targetPropertyType) {
34 mContextId = contextId;
StateTransformFactory.java 532 private static List<IStateTransform> transformsForGlStencilFuncFront(int contextId,
536 GLPropertyAccessor.makeAccessor(contextId,
542 GLPropertyAccessor.makeAccessor(contextId,
548 GLPropertyAccessor.makeAccessor(contextId,
556 private static List<IStateTransform> transformsForGlStencilFuncBack(int contextId,
560 GLPropertyAccessor.makeAccessor(contextId,
566 GLPropertyAccessor.makeAccessor(contextId,
572 GLPropertyAccessor.makeAccessor(contextId,
612 private static List<IStateTransform> transformsForGlStencilOpFront(int contextId,
616 GLPropertyAccessor.makeAccessor(contextId,
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp 56 const UString& contextId = exec->argument(0).toString(exec);
59 if (contextId == "experimental-webgl" || contextId == "webkit-3d") {
85 CanvasRenderingContext* context = canvas->getContext(ustringToString(contextId), attrs.get());
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 56 String contextId = toWebCoreString(args[0]);
59 if (contextId == "experimental-webgl" || contextId == "webkit-3d") {
85 CanvasRenderingContext* result = imp->getContext(contextId, attrs.get());
V8DocumentCustom.cpp 105 String contextId = toWebCoreString(args[0]);
109 CanvasRenderingContext* result = imp->getCSSCanvasContext(contextId, name, width, height);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 91 Image thumbnailImage, Function function, boolean hasFb, int contextId,
100 mContextId = contextId;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
org.eclipse.help_3.5.0.v20100524.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /external/webkit/Source/WebCore/dom/
Document.idl 224 [V8Custom] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMString name, in long width, in long height);

Completed in 638 milliseconds

1 2