| // Copyright (C) 2022 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #pragma once |
| |
| #include <stddef.h> |
| |
| extern "C" { |
| #include "virtio-gpu-gfxstream-renderer.h" |
| #include "virgl_hw.h" |
| } // extern "C" |
| |
| struct gfxstream_callbacks { |
| /* Metrics callbacks */ |
| void (*add_instant_event)(int64_t event_code); |
| void (*add_instant_event_with_descriptor)(int64_t event_code, int64_t descriptor); |
| void (*add_instant_event_with_metric)(int64_t event_code, int64_t metric_value); |
| void (*add_vulkan_out_of_memory_event)(int64_t result_code, uint32_t op_code, |
| const char* function, uint32_t line, |
| uint64_t allocation_size, bool is_host_side_result, |
| bool is_allocation); |
| void (*set_annotation)(const char* key, const char* value); |
| void (*abort)(); |
| }; |
| |
| extern "C" VG_EXPORT void gfxstream_backend_init( |
| uint32_t display_width, |
| uint32_t display_height, |
| uint32_t display_type, |
| void* renderer_cookie, |
| int renderer_flags, |
| struct virgl_renderer_callbacks* virglrenderer_callbacks, |
| struct gfxstream_callbacks* gfxstreamcallbacks); |
| |
| extern "C" VG_EXPORT void gfxstream_backend_setup_window( |
| void* native_window_handle, |
| int32_t window_x, |
| int32_t window_y, |
| int32_t window_width, |
| int32_t window_height, |
| int32_t fb_width, |
| int32_t fb_height); |
| |
| extern "C" VG_EXPORT void gfxstream_backend_teardown(void); |
| |
| // Get the gfxstream backend render information. |
| // example: |
| // /* Get the render string size */ |
| // size_t size = 0 |
| // gfxstream_backend_getrender(nullptr, 0, &size); |
| // |
| // /* add extra space for '\0' */ |
| // char * buf = malloc(size + 1); |
| // |
| // /* Get the result render string */ |
| // gfxstream_backend_getrender(buf, size+1, nullptr); |
| // |
| // if bufSize is less or equal the render string length, only bufSize-1 char copied. |
| extern "C" VG_EXPORT void gfxstream_backend_getrender( |
| char* buf, |
| size_t bufSize, |
| size_t* size); |
| |
| // A customization point that allows the downstream to call their own functions when |
| // gfxstream_backend_init is called. |
| void gfxstream_backend_init_product_override(); |