Binary that renders a triangle using Open GL, scans the resulting image to a PNG, and makes an occlusion query to determine the number of fragments shaded. To be used as reference when developing Turnip.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Brian Ho d6fc73e915 Use GL instead of GLES for GL_ARB_occlusion_query support hace 5 años
.gitignore Implement a simple GL program that draws 2 triangles with a depth buffer hace 5 años
Makefile Use GL instead of GLES for GL_ARB_occlusion_query support hace 5 años
README.md Add an occlusion query to count shaded fragments hace 5 años
occlusion.cc Use GL instead of GLES for GL_ARB_occlusion_query support hace 5 años
occlusion.frag Use GL instead of GLES for GL_ARB_occlusion_query support hace 5 años
occlusion.vert Use GL instead of GLES for GL_ARB_occlusion_query support hace 5 años

README.md

Open GL occlusion query demo

Overview

This repo contains the source for an applicaiton that renders triangles using Open GL, saves the output as a PNG, and outputs the number of shaded fragments via an occlusion query. This applicaiton is used as a reference for implementing occlusion queries for Vulkan on Turnip.

Instructions

  • Enter the CrOS chroot and set up the boards you want to test against (setup_board --board=${BOARD}).
  • Emerge mesa, and libpng to the device under test (emerge x11-drivers/opengles-headers media-libs/mesa libpng && cros deploy ${IP_ADDR} ${PACKAGES}).
  • make shaders
  • target={local, atlas (i915), cheza (adreno)} make