HomeSort by relevance Sort by last modified time
    Searched defs:frameBuffer (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/src/D3D9/
Direct3DSwapChain9.hpp 69 sw::FrameBufferWin *frameBuffer;
Direct3DSwapChain9.cpp 31 frameBuffer = 0;
100 unsigned int *frameBuffer = (unsigned int*)lockBackBuffer(0); // FIXME: Don't assume A8R8G8B8 mode
114 frameBuffer[thread * stride + i] = 0x00000000;
117 unsigned int *buffer = frameBuffer;
137 frameBuffer[thread * stride + 100] = 0x00FFFFFF;
142 frameBuffer[thread * stride + i] = 0x00FFFFFF;
160 frameBuffer->setCursorPosition(point.x, point.y);
164 frameBuffer->flip(window, source, format, stride);
187 frameBuffer->blit(window, source, sourceRect ? &sRect : 0, destRect ? &dRect : 0, format, stride);
209 frameBuffer->screenshot(buffer)
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Surface.h 21 #include "Main/FrameBuffer.hpp"
70 sw::FrameBuffer *frameBuffer;
  /external/swiftshader/src/OpenGL/libEGL/
Surface.h 22 #include "Main/FrameBuffer.hpp"
118 sw::FrameBuffer *frameBuffer;
  /external/swiftshader/src/Main/
FrameBuffer.cpp 15 #include "FrameBuffer.hpp"
37 void *FrameBuffer::cursor;
38 int FrameBuffer::cursorWidth = 0;
39 int FrameBuffer::cursorHeight = 0;
40 int FrameBuffer::cursorHotspotX;
41 int FrameBuffer::cursorHotspotY;
42 int FrameBuffer::cursorPositionX;
43 int FrameBuffer::cursorPositionY;
44 int FrameBuffer::cursorX;
45 int FrameBuffer::cursorY
    [all...]
  /external/skia/tools/gpu/gl/debug/
DebugGLTestContext.cpp 220 GrFrameBufferObj *frameBuffer = FIND(frameBufferID, GrFrameBufferObj,
223 this->setFrameBuffer(frameBuffer);
258 GrFrameBufferObj *frameBuffer = this->getFrameBuffer();
262 if (frameBuffer->getColor() &&
263 textures[i] == frameBuffer->getColor()->getID()) {
264 frameBuffer->setColor(nullptr);
266 if (frameBuffer->getDepth() &&
267 textures[i] == frameBuffer->getDepth()->getID()) {
268 frameBuffer->setDepth(nullptr);
270 if (frameBuffer->getStencil() &
415 GrFrameBufferObj *framebuffer = this->getFrameBuffer(); variable
417 GrAlwaysAssert(framebuffer); variable
457 GrFrameBufferObj *framebuffer = this->getFrameBuffer(); variable
459 GrAlwaysAssert(framebuffer); variable
592 GrFrameBufferObj* framebuffer = this->getFrameBuffer(); variable
593 GrAlwaysAssert(framebuffer); variable
    [all...]
  /external/libvncserver/rfb/
rfbclient.h 181 uint8_t* frameBuffer;
382 * framebuffer updates in hextile format. Likewise if you change the pixel
383 * format of the framebuffer, the server must be notified about this as well.
388 * @li Framebuffer pixel format (like RGB vs ARGB)
397 * Sends a framebuffer update request to the server. A VNC client may request an
406 * into the screen. The origin is at the upper left corner of the framebuffer.
428 * @note The cursor location is relative to the client's framebuffer, not the
637 * @note rfbClientCleanup() does not touch client->frameBuffer.
rfb.h 158 * else find the window underneath x and y and set the framebuffer to the dimensions
230 * Per-screen (framebuffer) structure. There can be as many as you wish,
324 * the frameBuffer has to be supplied by the serving process.
327 char* frameBuffer;
524 framebuffer from its present state to the current state of our
525 framebuffer.
552 in a subrectangle of the whole framebuffer. This is stored in the
554 framebuffer if the client is ready, empty if it's not. */
559 - when the framebuffer is modified and the client is ready, in most
561 milliseconds so that several changes to the framebuffer can be combine
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
FrameParser.java 54 ByteBuffer frameBuffer = ByteBuffer.wrap(frameBytes);
55 frameBuffer.order(ByteOrder.BIG_ENDIAN);
57 parseEthernetFrame(frameBuffer);
59 parseManagementFrame(frameBuffer);

Completed in 215 milliseconds