summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorEduardo Lima Mitev <[email protected]>2015-12-16 18:11:36 +0100
committerEduardo Lima Mitev <[email protected]>2016-03-03 15:14:05 +0100
commita347a0f53fbdd9b607d7eae4a483e62f82c68cb1 (patch)
tree41b71e690373ec4c6e121e0a0331c4bc5e883e4e /src/mesa/main/dd.h
parent993d7345b7c356d96f3d24865d83ff368bc6fc55 (diff)
mesa: Completely remove QuerySamplesForFormat from driver func table
At this point, all uses have been replaced by the more general hook QueryInternalFormat, introduced by ARB_internalformat_query2. Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 2f151c29654..60bc8ef4411 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -184,24 +184,6 @@ struct dd_function_table {
GLenum srcFormat, GLenum srcType );
/**
- * Determine sample counts support for a particular target and format
- *
- * \param ctx GL context
- * \param target GL target enum
- * \param internalFormat GL format enum
- * \param samples Buffer to hold the returned sample counts.
- * Drivers \b must \b not return more than 16 counts.
- *
- * \returns
- * The number of sample counts actually written to \c samples. If
- * \c internaFormat is not renderable, zero is returned.
- */
- size_t (*QuerySamplesForFormat)(struct gl_context *ctx,
- GLenum target,
- GLenum internalFormat,
- int samples[16]);
-
- /**
* Queries different driver parameters for a particular target and format.
* Since ARB_internalformat_query2 introduced several new query parameters
* over ARB_internalformat_query, having one driver hook for each parameter