Searched defs:framebuffer (Results 1 - 12 of 12) sorted by relevance

/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp127 bool framebuffer = renderToFramebuffer(); local
136 if (!framebuffer) {
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp228 Buffer framebuffer; local
229 framebuffer.w = vi.xres;
230 framebuffer.h = vi.yres;
231 framebuffer.s = fi.line_length / (vi.bits_per_pixel >> 3);
232 framebuffer.addr = bits;
257 clearBuffer(&framebuffer, 0);
263 drawRect(&framebuffer, 0x400000, framebuffer.w-2, 0, 2, framebuffer.h);
266 drawCircle(&framebuffer,
[all...]
/frameworks/base/libs/hwui/debug/
H A Dnullgles.cpp169 void glBindFramebuffer(GLenum target, GLuint framebuffer) {} argument
/frameworks/rs/
H A Drs_hal.h359 } framebuffer; member in struct:android::renderscript::__anon1695
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11Ext.cpp2542 /* GLboolean glIsFramebufferOES ( GLuint framebuffer ) */
2545 (JNIEnv *_env, jobject _this, jint framebuffer) {
2548 (GLuint)framebuffer
2553 /* void glBindFramebufferOES ( GLenum target, GLuint framebuffer ) */
2556 (JNIEnv *_env, jobject _this, jint target, jint framebuffer) {
2559 (GLuint)framebuffer
2544 android_glIsFramebufferOES__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
2555 android_glBindFramebufferOES__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
H A Dandroid_opengl_GLES20.cpp507 /* void glBindFramebuffer ( GLenum target, GLuint framebuffer ) */
510 (JNIEnv *_env, jobject _this, jint target, jint framebuffer) {
513 (GLuint)framebuffer
3987 /* GLboolean glIsFramebuffer ( GLuint framebuffer ) */
3990 (JNIEnv *_env, jobject _this, jint framebuffer) {
3993 (GLuint)framebuffer
509 android_glBindFramebuffer__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
3989 android_glIsFramebuffer__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp7243 /* void glBindFramebufferOES ( GLint target, GLint framebuffer ) */
7246 (JNIEnv *_env, jobject _this, jint target, jint framebuffer) {
7254 (GLint)framebuffer
8160 /* GLboolean glIsFramebufferOES ( GLint framebuffer ) */
8163 (JNIEnv *_env, jobject _this, jint framebuffer) {
8171 (GLint)framebuffer
7245 android_glBindFramebufferOES__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
8162 android_glIsFramebufferOES__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java1381 public void glBindFramebufferOES(int target, int framebuffer) { argument
1383 mgl11ExtensionPack.glBindFramebufferOES(target, framebuffer);
1578 public boolean glIsFramebufferOES(int framebuffer) { argument
1580 boolean result = mgl11ExtensionPack.glIsFramebufferOES(framebuffer);
H A DGLLogWrapper.java3451 public void glBindFramebufferOES(int target, int framebuffer) { argument
3454 arg("framebuffer", framebuffer);
3456 mgl11ExtensionPack.glBindFramebufferOES(target, framebuffer);
3754 public boolean glIsFramebufferOES(int framebuffer) { argument
3756 arg("framebuffer", framebuffer);
3758 boolean result = mgl11ExtensionPack.glIsFramebufferOES(framebuffer);
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp963 VkFramebuffer* framebuffer) {
964 *framebuffer = AllocHandle<VkFramebuffer>(device, HandleType::kFramebuffer);
1237 void DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* allocator) { argument
960 CreateFramebuffer(VkDevice device, const VkFramebufferCreateInfo*, const VkAllocationCallbacks* , VkFramebuffer* framebuffer) argument
/frameworks/native/vulkan/libvulkan/
H A Dapi_gen.cpp361 VKAPI_ATTR void DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator);
934 VKAPI_ATTR void DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator) { argument
935 GetData(device).dispatch.DestroyFramebuffer(device, framebuffer, pAllocator);
1618 VKAPI_ATTR void vkDestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator) { argument
1619 vulkan::api::DestroyFramebuffer(device, framebuffer, pAllocator);
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h2083 VkFramebuffer framebuffer; member in struct:VkCommandBufferInheritanceInfo
2205 VkFramebuffer framebuffer; member in struct:VkRenderPassBeginInfo
2314 typedef void (VKAPI_PTR *PFN_vkDestroyFramebuffer)(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAllocator);
2817 VkFramebuffer framebuffer,

Completed in 2174 milliseconds