Path: blob/21.2-virgl/src/gallium/drivers/r600/r600_dump.h
4570 views
/* -*- mesa-c++ -*-1*2* Copyright (c) 2018 Collabora LTD3*4* Author: Gert Wollny <[email protected]>5*6* Permission is hereby granted, free of charge, to any person obtaining a7* copy of this software and associated documentation files (the "Software"),8* to deal in the Software without restriction, including without limitation9* on the rights to use, copy, modify, merge, publish, distribute, sub10* license, and/or sell copies of the Software, and to permit persons to whom11* the Software is furnished to do so, subject to the following conditions:12*13* The above copyright notice and this permission notice (including the next14* paragraph) shall be included in all copies or substantial portions of the15* Software.16*17* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR18* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,19* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL20* THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,21* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR22* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE23* USE OR OTHER DEALINGS IN THE SOFTWARE.24*/2526#ifndef R600_DUMP_H27#define R600_DUMP_H2829#include <stdio.h>3031struct r600_shader;32struct tgsi_shader_info;3334void print_shader_info(FILE *f , int id, struct r600_shader *shader);3536void print_pipe_info(FILE *f, struct tgsi_shader_info *shader);3738#endif // R600_DUMP_H394041