mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-04 16:24:15 +01:00
19 lines
329 B
C
19 lines
329 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "qpu_assembler.h"
|
|
#include "shaders.h"
|
|
|
|
int main()
|
|
{
|
|
#define shader singleTextureClippingPlane_AlphaGE80_BlendDisabled_DepthStencilEnabled_FS
|
|
|
|
for(uint32_t c = 0; c < sizeof(shader)/sizeof(uint64_t); ++c)
|
|
{
|
|
disassemble_qpu_asm(shader[c]);
|
|
}
|
|
|
|
return 0;
|
|
}
|