Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
12 lines
192 B
GLSL
12 lines
192 B
GLSL
#version 450
|
|
#extension GL_EXT_debug_printf : enable
|
|
|
|
void main()
|
|
{
|
|
// invalid hex sequence
|
|
debugPrintfEXT("\xZ");
|
|
|
|
// not an octal sequence
|
|
debugPrintfEXT("\8");
|
|
}
|