Lines Matching refs:frag
35 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/demos/tri-frag.spv
36 COMMAND ${GLSLANG_VALIDATOR} -s -V ${PROJECT_SOURCE_DIR}/demos/tri.frag
37 COMMAND move frag.spv ${CMAKE_BINARY_DIR}/demos/tri-frag.spv
38 DEPENDS tri.frag ${GLSLANG_VALIDATOR}
45 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/demos/cube-frag.spv
46 COMMAND ${GLSLANG_VALIDATOR} -s -V ${PROJECT_SOURCE_DIR}/demos/cube.frag
47 COMMAND move frag.spv ${CMAKE_BINARY_DIR}/demos/cube-frag.spv
48 DEPENDS cube.frag ${GLSLANG_VALIDATOR}
58 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/demos/tri-frag.spv
59 COMMAND ${GLSLANG_VALIDATOR} -s -V -o tri-frag.spv ${PROJECT_SOURCE_DIR}/demos/tri.frag
60 DEPENDS tri.frag ${GLSLANG_VALIDATOR}
67 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/demos/cube-frag.spv
68 COMMAND ${GLSLANG_VALIDATOR} -s -V -o cube-frag.spv ${PROJECT_SOURCE_DIR}/demos/cube.frag
69 DEPENDS cube.frag ${GLSLANG_VALIDATOR}
94 …executable(tri tri.c ${CMAKE_BINARY_DIR}/demos/tri-vert.spv ${CMAKE_BINARY_DIR}/demos/tri-frag.spv)
96 …able(tri WIN32 tri.c ${CMAKE_BINARY_DIR}/demos/tri-vert.spv ${CMAKE_BINARY_DIR}/demos/tri-frag.spv)
101 …utable(cube cube.c ${CMAKE_BINARY_DIR}/demos/cube-vert.spv ${CMAKE_BINARY_DIR}/demos/cube-frag.spv)
110 …(cube WIN32 cube.c ${CMAKE_BINARY_DIR}/demos/cube-vert.spv ${CMAKE_BINARY_DIR}/demos/cube-frag.spv)