diff options
author | Brian Paul <[email protected]> | 2006-08-03 03:20:52 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-08-03 03:20:52 +0000 |
commit | 8d214bc8044e5027e3fa9302b259d0c557270b00 (patch) | |
tree | 442cd52e113a49bb48a1d93994322567cff149a4 /src/mesa/main/texstore.c | |
parent | 35fe7cfae4903fbea8c0e8318d43bba99944740c (diff) |
Initial work for GL_EXT_texture_sRGB.
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index 3280051abf9..9eb9856b0ce 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -2164,6 +2164,41 @@ _mesa_texstore_rgba_float16(TEXSTORE_PARAMS) } +#if FEATURE_EXT_texture_sRGB +GLboolean +_mesa_texstore_srgb8(TEXSTORE_PARAMS) +{ + /* XXX to do */ + _mesa_problem(ctx, "_mesa_texstore_srgb8 not finished"); + return GL_FALSE; +} + +GLboolean +_mesa_texstore_srgba8(TEXSTORE_PARAMS) +{ + /* XXX to do */ + _mesa_problem(ctx, "_mesa_texstore_srgb8 not finished"); + return GL_FALSE; +} + +GLboolean +_mesa_texstore_sl8(TEXSTORE_PARAMS) +{ + /* XXX to do */ + _mesa_problem(ctx, "_mesa_texstore_srgb8 not finished"); + return GL_FALSE; +} + +GLboolean +_mesa_texstore_sla8(TEXSTORE_PARAMS) +{ + /* XXX to do */ + _mesa_problem(ctx, "_mesa_texstore_srgb8 not finished"); + return GL_FALSE; +} + +#endif /* FEATURE_EXT_texture_sRGB */ + /** * Check if an unpack PBO is active prior to fetching a texture image. |