Searched defs:fb (Results 1 - 7 of 7) sorted by relevance

/frameworks/rs/driver/
H A DrsdFrameBuffer.cpp32 void setDepthAttachment(const Context *rsc, const FBOCache *fb) { argument
33 RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
36 if (fb->mHal.state.depthTarget != nullptr) {
37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv;
40 rsdAllocationSyncAll(rsc, fb->mHal.state.depthTarget,
47 void setColorAttachment(const Context *rsc, const FBOCache *fb) { argument
48 RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
50 for (uint32_t i = 0; i < fb->mHal.state.colorTargetsCount; i ++) {
52 if (fb->mHal.state.colorTargets[i] != nullptr) {
53 color = (DrvAllocation *)fb
64 rsdFrameBufferInit(const Context *rsc, const FBOCache *fb) argument
77 rsdFrameBufferSetActive(const Context *rsc, const FBOCache *fb) argument
93 rsdFrameBufferDestroy(const Context *rsc, const FBOCache *fb) argument
[all...]
/frameworks/av/media/libstagefright/
H A DXINGSeeker.cpp59 float fa, fb; local
66 fb = (float)mTOC[a];
68 fb = 256.0f;
70 fx = fa + (fb-fa)*(percent-a);
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp24 #include <linux/fb.h>
200 int fb = open(fbpath, O_RDONLY); local
201 if (fb >= 0) {
203 if (ioctl(fb, FBIOGET_VSCREENINFO, &vinfo) == 0) {
212 mapbase = mmap(0, mapsize, PROT_READ, MAP_PRIVATE, fb, 0);
218 close(fb);
/frameworks/base/core/jni/
H A DBindTest.cpp241 FieldBlock *fb; local
243 fb = findField(clazz, "instanceString", "Ljava/lang/String;");
245 if (fb == NULL || ((fb->access_flags & ACC_STATIC) == ACC_STATIC)) {
250 offset_instanceString = fb->offset;
/frameworks/native/libs/ui/
H A DFramebufferNativeWindow.cpp131 ALOGE_IF(err, "fb buffer %d allocation failed w=%d, h=%d, err=%s",
199 framebuffer_device_t* fb = getSelf(window)->fbDev; local
200 return fb->setSwapInterval(fb, interval);
279 framebuffer_device_t* fb = self->fbDev; local
285 int res = fb->post(fb, handle);
297 framebuffer_device_t* fb = self->fbDev; local
300 *value = static_cast<int>(fb->width);
303 *value = static_cast<int>(fb
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp206 void GLTraceContext::getCompressedFB(void **fb, unsigned *fbsize, unsigned *fbwidth, argument
235 *fb = fbcompressed;
H A Dgltrace_fixup.cpp179 GLMessage_FrameBuffer *fb = glmsg->mutable_fb(); local
180 fb->set_width(fbwidth);
181 fb->set_height(fbheight);
182 fb->add_contents(fbcontents, fbsize);

Completed in 175 milliseconds