1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-23 15:52:15 +01:00

19 lines
329 B
C
Raw Normal View History

#include <stdio.h>
2019-04-14 14:43:27 +01:00
#include <string.h>
2019-04-20 14:30:42 +01:00
#include <stdlib.h>
2019-04-14 14:43:27 +01:00
2019-04-20 14:30:42 +01:00
#include "qpu_assembler.h"
2020-05-12 22:45:30 +01:00
#include "shaders.h"
2019-04-14 14:43:27 +01:00
int main()
{
2020-05-12 22:45:30 +01:00
#define shader singleTextureClippingPlane_AlphaGE80_BlendDisabled_DepthStencilEnabled_FS
2019-04-19 17:46:54 +01:00
2020-05-12 22:45:30 +01:00
for(uint32_t c = 0; c < sizeof(shader)/sizeof(uint64_t); ++c)
{
2020-05-12 22:45:30 +01:00
disassemble_qpu_asm(shader[c]);
}
2019-04-14 14:43:27 +01:00
return 0;
}