mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-06 04:17:29 +02:00
15 lines
392 B
C
15 lines
392 B
C
//
|
|
// RenderUtil.h
|
|
// interface
|
|
//
|
|
// Created by Andrzej Kapolka on 8/15/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __interface__RenderUtil__
|
|
#define __interface__RenderUtil__
|
|
|
|
/// Renders a quad from (-1, -1, 0) to (1, 1, 0) with texture coordinates from (0, 0) to (1, 1).
|
|
void renderFullscreenQuad();
|
|
|
|
#endif /* defined(__interface__RenderUtil__) */
|